-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtailwind.config.js
More file actions
61 lines (56 loc) · 1.2 KB
/
tailwind.config.js
File metadata and controls
61 lines (56 loc) · 1.2 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
module.exports = {
important: true,
prefix: '',
purge: {
enabled: process.env.NODE_ENV === 'production',
content: [
'./src/**/*.{html,ts}',
'./src/assets/i18n/*.json'
]
},
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
maxHeight: {
'1/10': '10%',
'2/10': '20%',
'3/10': '30%',
'4/10': '40%',
'5/10': '50%',
'6/10': '60%',
'7/10': '70%',
'8/10': '80%',
'9/10': '90%',
}
},
colors: {
// v1
black: '#141414',
gray: '#202020',
white: '#FCFCFC',
warning: '#be750c',
danger: '#a61d24',
// Beta
'off-black': '#141414',
'ash': '#262338',
'body': '#4E4B66',
'label': '#6E7191',
'placeholder': '#A0A3BD',
'line': '#D9DBE9',
'input': '#EFF0F6',
'background': '#F7F7FC',
'off-white': '#FCFCFC',
'primary': '#C19CFC',
'success': '#4CFFA6',
'error': '#FF5DA1',
'primary-alternative': '#6308F7',
'success-alternative': '#00CC67',
'error-alternative': '#E40173',
'transparent': 'rgba(0,0,0,0)'
}
},
variants: {
extend: {},
},
plugins: [],
};