-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy paththeme.js
53 lines (50 loc) · 952 Bytes
/
theme.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
import { extendTheme } from '@chakra-ui/react'
const theme = extendTheme({
initialColorMode: 'light',
useSystemColorMode: false,
fonts: {
heading: `Roboto, sans-serif`,
body: `Roboto, sans-serif`,
},
brand: {
900: '#f6f7f7',
800: '#020202',
700: '#ba9862',
},
colors: {
gold: {
100: "#b79862",
200: "#b59761",
300: "#8F7340",
400: "#775821"
}
},
styles: {
global: {
'h1, h2, h3, h4': {
fontWeight: '500'
},
h2: {
fontSize: '36px',
},
h3: {
fontSize: '30px',
},
h4: {
fontSize: '20px',
},
'p, a, ul, li, i': {
fontSize: '18px',
letterSpacing: '0.025em',
fontWeight: '300'
},
a: {
color: 'gold.300',
transitionProperty: 'all',
transitionDuration: 'normal',
fontWeight: '500',
},
},
}
})
export default theme