-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
39 lines (39 loc) · 1.02 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
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
darkMode: 'class',
theme: {
screens: {
'sm': { 'max': '640px' },
'md': { 'min': '641px', 'max': '1023px' },
'lg': { 'min': '1024px' },
},
extend: {
textColor: {
'bluePrime': '#334257',
'blueSub': '#476072',
'baseColor': '#6b727b',
'lightBlue': '#548CA8',
'light': '#F9F9F9',
},
backgroundColor: {
'active': true,
'lightBlue': '#548CA8',
'light': '#F9F9F9',
'lightPoint': '#FEFBF3',
'dark': '#1A1A1D',
'darkBody': '#18181b',
'darkPoint': '#323232',
},
fontFamily: {
body: ['SpoqaHanSansNeo'],
},
},
},
variants: {
extend: {},
},
plugins: [],
}