-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
60 lines (60 loc) · 1.47 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
module.exports = {
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: false,
theme: {
screens: {
"sm": "250px",
"base": "420px",
"md": "768px",
"lg": "1100px",
"xl": "1400px"
},
extend: {
backgroundColor: { // If you also want to use them for other utilities (like borderColor, textColor, etc.) just copy them over to those as well.
'background': '#11232f',
'surface': '#1b374a',
'secondary-surface': '#0e1a23',
'primary': '#e54de5',
'secondary': '#16dbbe',
'tertiary': '#ffc900',
'positive': '#46ffc8',
'tentative': '#ffd464',
'destructive': '#ff4444',
'green': '#16dbbe',
},
textColor: {
'white': '#fff1e2',
'blue': '#92bcd8',
'green': '#16dbbe',
'secondary': '#16dbbe',
'tertiary': '#ffc900',
},
borderRadius: {
'5': '5px',
'10': '10px',
'15': '15px'
},
borderOpacity: {
'10': '0.1',
},
borderColor: {
'green': '#16dbbe',
'surface': '#1b374a',
'secondary-surface': '#0e1a23',
'primary': '#e54de5',
'secondary': '#16dbbe',
'tertiary': '#ffc900',
'positive': '#46ffc8',
'tentative': '#ffd464',
'destructive': '#ff4444',
},
fontSize: {
'14': '14px',
'16': '16px',
'20': '20px'
}
},
},
variants: {},
plugins: [],
}