-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (36 loc) · 881 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
36 lines (36 loc) · 881 Bytes
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
module.exports = {
purge: ['./components/**/*.{js,ts,jsx,tsx}', './pages/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
textColor: {
'gray-999': '#999',
'gray-333': '#333',
'gray-a1': '#A1A1A1',
'gray-76': '#767676',
'theme-green': '#008080',
},
backgroundColor: {
'gray-fb': '#fbfbfb',
'theme-green': '#008080',
'theme-navy-blue': '#252C34',
'black-27': '#272727',
},
borderColor: {
'gray-e9': '#e9e9e9',
'gray-999': '#999',
'gray-333': '#333',
'theme-green': '#008080',
'theme-light-blue': '#414f5a',
},
fontFamily: {
'open-sans': '"Open Sans", Helvetica, Arial, sans-serif',
lato: '"Lato", sans-serif',
},
width: {
xl: '1230px',
},
},
},
variants: {},
plugins: [],
};