-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.js
48 lines (44 loc) · 904 Bytes
/
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
const { colors } = require('tailwindcss/defaultTheme')
module.exports = {
purge: {
content: [
'./pages/**/*.vue',
'./layouts/**/*.vue',
'./components/**/*.vue'
],
options: {
whitelist: ['html', 'body'],
whitelistPatterns: [/^fade-|vdatetime-/]
}
},
theme: {
container: {
center: true
},
extend: {
colors: {
gray: {
...colors.gray,
100: '#f8fafc',
200: '#f1f5f8',
400: '#dae1e7',
500: '#b8c2cc',
600: '#8795a1',
700: '#606f7b',
800: '#3d4852',
900: '#181E23'
},
indigo: {
...colors.indigo,
100: '#e6e8ff',
200: '#b2b7ff',
400: '#7886d7',
500: '#6574cd',
600: '#5661b3',
800: '#2f365f',
900: '#191e38'
}
}
}
}
}