-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
132 lines (121 loc) · 3.03 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
import React from "react";
import ReactDOM from "react-dom";
import GlobalStyle from "./styles/globalStyles";
import App from "./App";
import { ChakraProvider } from "@chakra-ui/react";
import { theme as chakraTheme, extendTheme } from "@chakra-ui/react";
import { createBreakpoints } from "@chakra-ui/theme-tools";
//This file sets up the theme for the website things like colors, fonts, breakpoints, etc.
const fonts = {
...chakraTheme.fonts,
body: `Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"`,
heading: `Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"`,
fontWeights: {
normal: 300,
medium: 600,
bold: 700,
},
fontSizes: {
xs: "12px",
sm: "14px",
md: "16px",
lg: "18px",
xl: "20px",
"2xl": "24px",
"3xl": "28px",
"4xl": "36px",
"5xl": "48px",
"6xl": "64px",
},
};
const breakpoints = createBreakpoints({
sm: "576px",
md: "768px",
lg: "992px",
xl: "1200px",
});
const colors = {
primary: "#FFECD1",
secondary: "#001524",
highlightLight: "#15616D",
hightlightDark: "#FFECD1",
backgroundLight: "#FFECD1",
backgroundDark: "#001524",
textLight: "#001524",
textDark: "#FFECD1",
accentColor: "#15616D",
accentColor2: "#E4D6A7",
glassCardBgColorDark: "rgba(255, 255, 255, 0.1)",
glassCardBgColorLight: "rgba(46, 49, 49, .5)",
glassCardBoxShadowDark: "rgba(255, 255, 255, .1)",
glassCardBoxShadowLight: "rgba(255, 255, 255, .5)",
};
const overrides = {
...chakraTheme,
fonts,
colors,
breakpoints,
};
const Button = {
// Styles for the base style
baseStyle: {
fontWeight: "bold",
textTransform: "uppercase",
borderRadius: "base",
cursor: "pointer",
// <-- border radius is same for all variants and sizes
},
sizes: {
sm: {
fontSize: "sm",
px: 4, // <-- px is short for paddingLeft and paddingRight
py: 3, // <-- py is short for paddingTop and paddingBottom
},
md: {
fontSize: "md",
px: 6,
py: 4,
margin: 0.5,
},
},
// Two variants: outline and solid
variants: {
outline: {
border: "2px solid",
borderColor: "purple.500",
color: "purple.500",
},
solid: {
bg: "purple.500",
color: "white",
},
nav: {
px: 6,
py: 4,
margin: 1,
},
},
// The default size and variant values
defaultProps: {
size: "md",
variant: "outline",
},
};
const customTheme = extendTheme(overrides, {
components: {
Button,
},
});
ReactDOM.render(
<React.StrictMode>
<ChakraProvider theme={customTheme}>
<GlobalStyle>
<App />
</GlobalStyle>
</ChakraProvider>
</React.StrictMode>,
document.getElementById("root")
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals