-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
55 lines (55 loc) · 1.08 KB
/
tailwind.config.js
File metadata and controls
55 lines (55 loc) · 1.08 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
module.exports = {
purge: [
'./components/**/*.{vue,js}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
'content/**/**.md'
],
theme: {
darkSelector: '.dark-mode',
extend: {
// fontFamily: {
// lora: ''
// },
zIndex: {
'-1': '-1',
'-10': '-10'
},
colors: {
brand: {
DEFAULT: '#f2f',
light: '#ccc',
dark: '#bbb'
},
primary: '#990',
secondary: '#990',
success: '#990',
warning: '#990',
info: '#990',
danger: '#990'
}
}
},
variants: {
backgroundColor: [
'dark',
'dark-hover',
'dark-group-hover',
'dark-even',
'dark-odd',
'hover',
'responsive'
],
borderColor: [
'dark',
'dark-focus',
'dark-focus-within',
'hover',
'responsive'
],
textColor: ['dark', 'dark-hover', 'dark-active', 'hover', 'responsive']
},
plugins: [require('tailwindcss-dark-mode')(), require('postcss')]
}