-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
59 lines (59 loc) · 1.55 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
module.exports = {
content: require('fast-glob').sync([
'source/**/*.html',
'source/**/*.md',
'source/**/*.js',
'source/**/*.php',
'source/**/*.vue',
]),
options: {
safelist: [/language/, /hljs/, /mce/],
},
theme: {
extend: {
colors: {
"strava-orange": '#fc4c02',
"mastodon-purple": '#595aff',
},
fontFamily: {
'sans': [
'system-ui',
'sans-serif',
],
'serif': [
'Charter',
'Bitstream Charter',
'Sitka Text',
'Cambria',
'serif',
],
'mono': [
'ui-monospace',
'Cascadia Code',
'Source Code Pro',
'Menlo',
'Consolas',
'DejaVu Sans Mono',
'monospace',
]
},
},
cursor: {
auto: 'auto',
default: 'default',
pointer: 'pointer',
wait: 'wait',
text: 'text',
move: 'move',
'not-allowed': 'not-allowed',
// crosshair: 'crosshair',
'zoom-in': 'zoom-in',
}
},
variants: {
margin: ['responsive', 'first'],
textColor: ['hover', 'group-hover'],
textDecoration: ['hover', 'group-hover'],
},
plugins: []
}