-
Notifications
You must be signed in to change notification settings - Fork 9
/
theme.ts
81 lines (80 loc) · 1.65 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { extendTheme } from "@chakra-ui/react";
export const theme = extendTheme({
styles: {
global: {
"html, body": {
// backgroundColor: "#291555",
backgroundColor: "#452885",
lineHeight: "1.6em",
color: "#d1c9e3",
},
a: {
color: "#d1c9e3",
},
},
},
breakpoints: {
sm: "320px",
md: "768px",
lg: "960px",
xl: "1200px",
"2xl": "1736px",
},
fonts: {
heading: `"Space Mono", monospace`,
body: `"Poppins", sans-serif`,
inter: `"Inter", sans-serif`,
},
components: {
Link: {
baseStyle: {
textDecoration: "underline",
color: "#d1c9e3",
},
},
Text: {
baseStyle: {
color: "#d1c9e3",
fontSize: "1.1em",
fontWeight: 400,
lineHeight: "1.6em",
fontFamily: `"Poppins", sans-serif`,
},
},
Heading: {
baseStyle: {
fontFamily: "Space Mono, monospace",
fontWeight: 500,
fontSize: "2rem",
},
},
Box: {
baseStyle: {
borderRadius: "6px",
backgroundColor: "#321e5e",
},
},
Button: {
variants: {
statement: {
padding: "1.5rem 1.75rem",
background: "#be59cf",
color: "white",
borderRadius: "0.5rem",
opacity: 0.9,
fontWeight: 800,
fontSize: "1.2rem",
},
delegate: {
padding: "1.5rem 1.75rem",
background: "#42c8b0",
color: "white",
borderRadius: "0.5rem",
opacity: 0.9,
fontWeight: 800,
fontSize: "1.2rem",
},
},
},
},
});