-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
52 lines (50 loc) · 891 Bytes
/
tailwind.config.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
import type { Config } from 'tailwindcss'
import defaultTheme from 'tailwindcss/defaultTheme'
export default <Partial<Config>>{
theme: {
container: {
padding: '2rem',
center: true
},
extend: {
// fontFamily: {
// },
fontSize: {
'lg-heading': '5rem',
'heading': '3rem',
'sub-heading': '2rem',
},
aspectRatio: {
auto: 'auto',
square: '1 / 1',
video: '16 / 9',
},
colors: {
base: '#547AA5',
secondary: '#2a4494',
text: {
DEFAULT: '#1a090d',
alternative: '#d6c9c9',
},
white: '#d6c9c9',
},
typography: {
DEFAULT: {
css: {
fontSize: '1.4rem',
// 'color': '#383839',
// 'h1, h2, h3, h4': {
// color: '#383839'
// },
// 'a': {
// color: '#f4241d'
// },
// 'blockquote': {
// color: '#383839'
// }
}
}
}
}
}
}