-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
84 lines (84 loc) · 1.49 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
78
79
80
81
82
83
84
module.exports = {
purge: {
mode: 'layers',
content: [
'./pages/**/*.vue',
'./layouts/**/*.vue',
'./components/**/*.vue',
],
options: {
whitelist: [
'html',
'body',
'ul',
'ol',
'pre',
'code',
'blockquote',
'blog-image',
'blog-note',
'blog-image',
'mt-4'
],
whitelistPatterns: [/\bhljs\S*/]
}
},
theme: {
extend: {
colors: {
pink: {
default: '#ff214f',
light: '#ffebf0'
},
purple: {
default: '#661cb7',
light: '#eee3fc',
}
}
},
fontFamily: {
sans: [
'BlinkMacSystemFont',
'-apple-system',
'Segoe UI',
'Roboto',
'Oxygen',
'Ubuntu',
'Cantarell',
'Fira Sans',
'Droid Sans',
'Helvetica Neue',
'sans-serif',
],
serif: [
'-apple-system',
'BlinkMacSystemFont',
'Segoe UI',
'Roboto',
'Helvetica',
'Arial',
'sans-serif',
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol',
],
mono: [
'SFMono-Regular',
'Consolas',
'Liberation Mono',
'Menlo',
'Courier',
'monospace',
]
},
container: {
center: true
},
},
variants: {
// Some useful comment
},
plugins: [
// Some useful comment
]
}