-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 983 Bytes
/
tailwind.config.js
File metadata and controls
44 lines (44 loc) · 983 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
33
34
35
36
37
38
39
40
41
42
43
44
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
background: '#06060e',
panel: '#0c0c18',
'panel-border': '#1a1a30',
text: {
DEFAULT: '#c8c8d8',
dim: '#666680',
bright: '#e8e8f0',
},
accent: '#ffd700',
swordsman: {
DEFAULT: '#8b1a2b',
stroke: '#e94560',
},
mage: {
DEFAULT: '#3b2d7a',
stroke: '#7b68ee',
},
'first-person': {
DEFAULT: '#6b5a00',
stroke: '#ffd700',
},
shared: {
DEFAULT: '#0a4a5c',
stroke: '#00d9ff',
},
},
fontFamily: {
display: ['"Cormorant Garamond"', 'serif'],
sans: ['"IBM Plex Sans"', 'sans-serif'],
mono: ['"JetBrains Mono"', 'monospace'],
},
},
},
plugins: [],
}