-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.cjs
64 lines (55 loc) · 1.18 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* eslint-env node */
module.exports = {
content: ['index.html', './src/**/*.{html,js,ts,vue}'],
safelist: [
'bg-indigo-100',
'bg-pink-100',
'bg-emerald-100',
'bg-purple-100',
'bg-indigo-300',
'bg-pink-300',
'bg-emerald-300',
'bg-purple-300',
'bg-indigo-600',
'bg-pink-600',
'bg-emerald-600',
'bg-purple-600',
'border-indigo-50',
'border-pink-50',
'border-emerald-50',
'border-purple-50',
'fill-indigo-600',
'fill-pink-600',
'fill-emerald-600',
'fill-purple-600',
'stroke-indigo-50',
'stroke-pink-50',
'stroke-emerald-50',
'stroke-purple-50',
'stroke-indigo-600',
'stroke-pink-600',
'stroke-emerald-600',
'stroke-purple-600',
'text-indigo-600',
'text-pink-600',
'text-emerald-600',
'text-purple-600',
// Link colors
'before:bg-neutral-900',
'stroke-neutral-900',
'before:bg-red-600',
'stroke-red-600',
],
theme: {
extend: {
fontFamily: {
poppins: ['Poppins'],
'dm-sans': ['DM Sans'],
},
colors: {
'gray-dark': '#5E5E5E',
},
},
},
plugins: [require('tailwind-scrollbar-hide')],
}