-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
53 lines (53 loc) · 1.18 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
module.exports = {
purge: ['./index.html', './src/**/*.vue'],
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
sans: ['Josefin Sans'],
},
gradientColorStops: {
primary: 'var(--clr-checkbox-grad1)',
secondary: 'var(--clr-checkbox-grad2)',
},
extend: {
borderColor: {
muted: 'var(--clr-muted-200)',
},
letterSpacing: {
widest: '.5em',
},
colors: {
secondary: 'var(--clr-fill-secondary)',
},
textColor: {
accent: 'hsl(220, 98%, 61%)',
skin: {
base: 'var(--clr-text-base)',
muted: {
100: 'var(--clr-muted-100)',
200: 'var(--clr-muted-200)',
},
hover: 'var(--clr-muted-hover)',
},
},
backgroundColor: {
skin: {
primary: 'var(--clr-fill-primary)',
secondary: 'var(--clr-fill-secondary)',
},
},
divideColor: {
skin: {
base: 'var(--clr-muted-200)',
},
},
},
},
variants: {
extend: {
display: ['group-hover'],
cursor: ['disabled']
},
},
plugins: [require('@tailwindcss/forms')],
}