-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.js
More file actions
34 lines (34 loc) · 801 Bytes
/
tailwind.js
File metadata and controls
34 lines (34 loc) · 801 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
module.exports = {
corePlugins: {
preflight: false,
},
prefix: 'tw-',
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
colors: {
'grey-light': '#F5F6F9',
'white': '#FFFFFF',
'grey': 'rgba(0, 0, 0, 0.4)',
'blue': '#47cdff',
'blue-light': '#8ae2fe',
'black': '#000000',
'red': '#ff0000',
'default': 'var(--text-default-color)',
},
backgroundColor: theme => ({
'page': 'var(--page-background-color)',
'card': 'var(--card-background-color)',
'button': 'var(--button-background-color)',
'header': 'var(--header-background-color)',
}),
boxShadow: {
'DEFAULT': '0 0 5px 0 rgba(0, 0, 0, 0.08)'
},
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}