-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
59 lines (58 loc) · 1.86 KB
/
tailwind.config.js
File metadata and controls
59 lines (58 loc) · 1.86 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/** @type {import('tailwindcss').Config} */
import typography from '@tailwindcss/typography';
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
'primary': 'var(--font-primary)',
'headings': 'var(--font-headings)',
'accent': 'var(--font-accent)',
'vt323': 'var(--font-vt323)',
},
colors: {
'primary': 'var(--color-primary)',
'secondary': 'var(--color-secondary)',
'surface': 'var(--color-surface)',
'surface-light': 'var(--color-surface-light)',
'custom-border': 'var(--color-border)',
'card': {
'bg': 'var(--color-card-bg)',
'selected':'var(--color-card-selected)',
'shadow': 'var(--color-card-shadow)',
},
'text': {
'primary': 'var(--color-text-primary)',
'secondary': 'var(--color-text-secondary)',
'muted': 'var(--color-text-muted)',
'light': 'var(--color-text-light)',
},
'accent': {
'blue': 'var(--color-accent-blue)',
'blue-hover':'var(--color-accent-blue-hover)',
},
// MC-specific
'mc-grass': 'var(--grass)',
'mc-grass-bright': 'var(--grass-bright)',
'mc-grass-glow': 'var(--grass-glow)',
'mc-dirt': 'var(--dirt)',
'mc-gold': 'var(--gold)',
'mc-diamond': 'var(--diamond)',
'mc-stone': 'var(--stone)',
'mc-obsidian': 'var(--obsidian)',
'mc-text-dim': 'var(--text-dim)',
'mc-text-muted':'var(--text-muted)',
'xp': 'var(--color-xp)',
'xp-bg': 'var(--color-xp-bg)',
'gold': 'var(--color-gold)',
},
backgroundColor: {
'main': 'var(--color-background)',
}
},
},
plugins: [typography],
}