-
Notifications
You must be signed in to change notification settings - Fork 11
/
tailwind.config.js
74 lines (74 loc) · 2.21 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
module.exports = {
content: [
'./src/**/*.html',
'./src/**/*.vue',
],
// Protect certain classes from being purged
safelist: [
// Protect classes used by Nanobar
'nanobar', 'bar',
// Protect classes assigned to toasts in main.js
'bg-red', 'bg-orange', 'bg-green', 'bg-blue',
],
theme: {
colors: {
black: 'var(--color-black)',
gray: {
DEFAULT: 'var(--color-gray)',
light: 'var(--color-gray-light)',
dark: 'var(--color-gray-dark)',
darker: 'var(--color-gray-darker)',
},
white: 'var(--color-white)',
blue: {
DEFAULT: 'var(--color-blue)',
light: 'var(--color-blue-light)',
dark: 'var(--color-blue-dark)',
},
red: {
DEFAULT: 'var(--color-red)',
light: 'var(--color-red-light)',
lightest: 'var(--color-red-lightest)',
},
orange: 'var(--color-orange)',
green: {
DEFAULT: 'var(--color-green)',
light: 'var(--color-green-light)',
lightest: 'var(--color-green-lightest)',
},
// Special coloring schemes specific to Ashes card behavior
inexhaustible: {
DEFAULT: 'var(--color-inexhaustible)',
dark: 'var(--color-inexhaustible-dark)',
},
reaction: {
DEFAULT: 'var(--color-reaction)',
dark: 'var(--color-reaction-dark)',
},
dice: {
ceremonial: 'var(--color-dice-ceremonial)',
'ceremonial-bg': 'var(--color-dice-ceremonial-bg)',
charm: 'var(--color-dice-charm)',
'charm-bg': 'var(--color-dice-charm-bg)',
illusion: 'var(--color-dice-illusion)',
'illusion-bg': 'var(--color-dice-illusion-bg)',
natural: 'var(--color-dice-natural)',
'natural-bg': 'var(--color-dice-natural-bg)',
divine: 'var(--color-dice-divine)',
'divine-bg': 'var(--color-dice-divine-bg)',
sympathy: 'var(--color-dice-sympathy)',
'sympathy-bg': 'var(--color-dice-sympathy-bg)',
time: 'var(--color-dice-time)',
'time-bg': 'var(--color-dice-time-bg)',
},
},
listStyleType: {
none: 'none',
disc: 'disc',
circle: 'circle',
decimal: 'decimal',
},
},
variants: {},
plugins: [],
}