-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.ts
57 lines (56 loc) · 995 Bytes
/
theme.ts
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
import { extendTheme } from "@chakra-ui/react";
export const theme = extendTheme({
colors: {
TODO: {
blue: "#1e40af",
lightBlue: "#456ced",
},
},
fonts: {
heading: "Inter, sans-serif",
body: "Inter, sans-serif",
},
styles: {
global: {
"*": {
boxSizing: "border-box",
},
"html, body": {
padding: 0,
margin: 0,
height: "100%",
width: "100%",
},
a: {
color: "inherit",
textDecoration: "none",
},
},
},
components: {
Box: {
baseStyle: {
overflowWrap: "anywhere",
},
},
Text: {
baseStyle: {
overflowWrap: "anywhere",
},
},
Button: {
variants: {
blue: {
bg: "TODO.blue",
color: "white",
_hover: {
bg: "TODO.lightBlue",
_active: {
bg: "TODO.lightBlue",
},
},
},
},
},
},
});