-
-
Notifications
You must be signed in to change notification settings - Fork 273
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (36 loc) · 1.13 KB
/
tailwind.config.js
File metadata and controls
37 lines (36 loc) · 1.13 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
const colors = require('tailwindcss/colors')
module.exports = {
theme: {
darkMode: 'class',
extend: {
colors: {
green: colors.emerald,
background: 'rgb(var(--background) / <alpha-value>)',
card: 'rgb(var(--card) / <alpha-value>)',
muted: 'rgb(var(--muted) / <alpha-value>)',
secondary: 'rgb(var(--secondary) / <alpha-value>)',
primary: 'rgb(var(--primary) / <alpha-value>)',
foreground: 'rgb(var(--foreground) / <alpha-value>)',
focused: 'rgb(var(--focused) / <alpha-value>)',
accent: 'rgb(var(--accent) / <alpha-value>)',
danger: 'rgb(var(--danger) / <alpha-value>)',
},
width: {
'16': '4rem',
}
}
},
content: [
'./views/*.tpl.html',
],
safelist: [
'newsbox-default',
'newsbox-warning',
'newsbox-danger',
'leaderboard-self',
'leaderboard-default',
'leaderboard-gold',
'leaderboard-silver',
'leaderboard-bronze',
]
}