-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (40 loc) · 1.28 KB
/
tailwind.config.js
File metadata and controls
40 lines (40 loc) · 1.28 KB
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
module.exports = {
content: ["./**/*.{html,js}"],
theme: {
extend: {
colors: {
'light-cloud': '#ecf0f1',
'dark-cloud': '#bdc3c7',
'light-gray': '#95a5a6',
'dark-gray': '#7f8c8d',
'light-midnight': '#34495e',
'dark-midnight': '#2c3e50',
'light-purple': '#a55eea',
'dark-purple': '#8854d0',
'light-blue': '#4b7bec',
'dark-blue': '#3867d6',
'light-sky': '#45aaf2',
'dark-sky': '#2d98da',
'light-green': '#26de81',
'dark-green': '#20bf6b',
'light-yellow': '#fed330',
'dark-yellow': '#f7b731',
'light-orange': '#fd9644',
'dark-orange': '#fa8231',
'light-red': '#fc5c65',
'dark-red': '#eb3b5a',
'flat-green': '#2ecc71',
'flat-red': '#e74c3c',
'flat-yellow': '#f1c40f',
'flat-blue': '#3498db',
}
},
},
safelist: [
{
pattern: /bg-(light|dark)-(red|green|blue|yellow|sky|purple|orange|cloud)/,
variants: ['hover']
}
],
plugins: [],
}