-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
50 lines (50 loc) · 993 Bytes
/
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
50
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
esperanto: {
light: '#53CB40',
DEFAULT: '#009900',
dark: '#006900'
},
primary: {
light: '#4DBE76',
DEFAULT: '#008D49',
dark: '#005E1F'
},
secondary: {
light: '#7CA3FF',
DEFAULT: '#3E75E8',
dark: '#004AB5'
},
info: {
light: '#64B0FF',
DEFAULT: '#0081ED',
dark: '#0055BA'
},
danger: {
light: '#ff7069',
DEFAULT: '#E13B3E',
dark: '#A80017'
},
dark: {
DEFAULT: '#171C22',
secondary: '#1E242B',
tertiary: '#252C34'
},
gray: {
DEFAULT: '#3A4148',
light: '#9CA3AF'
}
}
}
},
variants: {
extend: {
opacity: ['disabled']
},
},
plugins: [],
}