-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
45 lines (45 loc) · 1.05 KB
/
tailwind.config.cjs
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
module.exports = {
darkMode: 'class',
content: ['./index.html', './src/**/*.{vue, js}'],
theme: {
extend: {
fontSize: {
xs: ['0.25rem', '0.35rem'],
sm: ['0.35rem', '0.45rem'],
base: ['0.42rem', '0.55rem'],
lg: ['0.55rem', '0.65rem'],
xl: ['0.65rem', '0.75rem']
},
boxShadow: {
'l-white': '-10px 0 10px white',
'shadow-l-zinc': '-10px 0 10px #18181d'
},
height: {
header: '72px',
main: 'calc(100vh - 72px)'
},
colors: {
main: '#f44c58',
'hover-main': '#f32836',
'success-100': "#f2f9ec",
'success-200': '#e4f2db',
'success-3000': '#7ec050',
'warn-100': '#fcf6ed',
'warn-200': '#f8ecda',
'warn-300': '#dca550',
'error-100': '#ed7456',
'error-200': '#f3471c',
'error-300': '#ffffff'
},
variants: {
scrollbar: ['dark']
},
backdropBlur: {
'4xl': '240px'
}
},
},
plugins: [
require('tailwind-scrollbar')
],
}