-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
49 lines (49 loc) · 1.04 KB
/
tailwind.config.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
module.exports = {
content: ['./src/pages/**/*.{js,ts,jsx,tsx}', './src/components/**/*.{js,ts,jsx,tsx}'],
theme: {
container: {
center: true
},
colors: {
background: {
dark: '#F9F9FA',
DEFAULT: '#FFFFFF' // Primary Color
},
blue: {
DEFAULT: '#4172B5' // Primary Color
},
gray: {
DEFAULT: '#1E2126', // Secondary Text Color
light: '#636E7D' // Third Text Color
},
border: {
DEFAULT: '#DDE0E4', // Primary Border Color
light: '#FFFFFF' // Primary Border Color
},
white: {
DEFAULT: '#FFFFFF'
}
},
fontFamily: {
sans: [
'Hiragino Kaku Gothic ProN',
'Hiragino Sans',
'Segoe UI',
'Roboto',
'Noto Sans CJK JP',
'sans-serif',
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol',
'Noto Sans Emoji'
]
},
extend: {}
},
// variants: {
// extend: {
// borderWidth: ['first']
// }
// },
plugins: []
}