-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
67 lines (67 loc) · 1.51 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
module.exports = {
content: [
'./src/**/*.{html,ts}',
],
theme: {
borderWidth: {
DEFAULT: '1px',
'0': '0',
'2': '2px',
'3': '3px',
'4': '4px',
'6': '6px',
'8': '8px',
},
fontFamily: {
'body': ['"Roboto"'],
},
extend: {
colors: {
'default': '#00a0be',
'dashboard': '#ffffff',
'euphoria': '#deb431',
'mellow': '#252525',
'midnight': '#ffffff',
'passion': '#ffffff',
'swiss': '#ffffff',
},
backgroundColor: {
'default': '#ffffff',
'dashboard': '#14202b',
'euphoria': '#23121c',
'mellow': '#ffdf00',
'midnight': '#000000',
'passion': '#620f72',
'swiss': '#ed1b24',
},
borderColor: {
'default': '#00a0be',
'dashboard': '#0e161f',
'euphoria': '#3a1f32',
'mellow': '#252525',
'midnight': '#ffffff',
'passion': '#fe1963',
'swiss': '#ffcccc',
},
fill: {
'default': '#808080',
'dashboard': '#637785',
'euphoria': '#c10156',
'mellow': '#3e4245',
'midnight': '#777777',
'passion': '#ffffff',
'swiss': '#3e4245',
},
stroke: {
'default': '#000000',
'dashboard': '#ffffff',
'euphoria': '#deb431',
'mellow': '#252525',
'midnight': '#ffffff',
'passion': '#fe1963',
'swiss': '#ffffff',
}
},
},
plugins: [require('@tailwindcss/forms')],
};