-
Notifications
You must be signed in to change notification settings - Fork 10
/
tailwind.config.js
77 lines (77 loc) · 1.67 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
68
69
70
71
72
73
74
75
76
77
module.exports = {
content: ['storyblok/**/*.{vue,js}', 'pages/**/*.vue'],
safelist: [
'bg-primary',
'bg-secondary',
'bg-tertiary',
'bg-medium',
'bg-dark',
'bg-white',
'bg-light',
'hover:bg-primary',
'hover:bg-secondary',
'hover:bg-tertiary',
'hover:bg-medium',
'hover:bg-dark',
'hover:bg-white',
'hover:bg-light',
'text-primary',
'text-secondary',
'text-tertiary',
'text-medium',
'text-dark',
'text-white',
'text-light',
'hover:text-primary',
'hover:text-secondary',
'hover:text-tertiary',
'hover:text-medium',
'hover:text-dark',
'hover:text-white',
'hover:text-light',
'border-primary',
'border-secondary',
'border-tertiary',
'border-medium',
'border-dark',
'border-white',
'border-light',
'items-start',
'items-center',
'items-end',
],
theme: {
container: {
center: true,
padding: {
DEFAULT: '1rem',
lg: '2rem',
},
},
fontFamily: {
display: 'var(--font-family-display)',
body: 'var(--font-family-body)',
},
borderRadius: {
none: '0',
sm: 'var(--rounded_sm)',
DEFAULT: 'var(--rounded_default)',
md: 'var(--rounded_md)',
lg: 'var(--rounded_lg)',
xl: 'var(--rounded_xl)',
'2xl': 'var(--rounded_2xl)',
'3xl': 'var(--rounded_3xl)',
full: 'var(--rounded_full)',
},
extend: {
colors: {
primary: 'var(--primary)',
secondary: 'var(--secondary)',
medium: 'var(--medium)',
light: 'var(--light)',
dark: 'var(--dark)',
},
},
},
plugins: [require('@tailwindcss/typography')],
}