forked from auroral-ui/hexo-theme-aurora
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (32 loc) · 768 Bytes
/
tailwind.config.js
File metadata and controls
32 lines (32 loc) · 768 Bytes
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
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
spacing: {
97: '26rem',
98: '28rem',
'12/10': '120%'
},
colors: {
ob: 'var(--text-accent)',
'ob-normal': 'var(--text-normal)',
'ob-trans': 'var(--background-trans)',
'ob-accent-55': 'var(--bg-accent-55)',
'ob-secondary': 'var(--text-sub-accent)',
'ob-bright': 'var(--text-bright)',
'ob-dim': 'var(--text-dim)',
'ob-deep': {
800: 'var(--background-secondary)',
900: 'var(--background-primary)'
}
},
boxShadow: {
ob: 'var(--accent-shadow)'
}
}
},
variants: {
extend: {}
},
plugins: []
}