-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (48 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontSize: {
'xxs': '.625rem',
},
strokeWidth: {
8: '8px',
},
colors: {
gold: '#E0AF65',
crimson: '#89192D',
brilliance: '#7DFFBA',
'anger-light': '#CD8290',
'gray-gold': '#776756',
gray: '#1B1B1B',
brown: '#24130A',
'light-red': '#EF5858',
'dark-green': '#064105',
'dark-green-accent': '#3A3D23',
order: {
power: '#F4B547',
giants: '#EB544D',
titans: '#EC68A8',
skill: '#706DFF',
perfection: '#8E35FF',
twins: '#0020C6',
reflection: '#00A2AA',
detection: '#139757',
fox: '#D47230',
vitriol: '#59A509',
brilliance: '#7DFFBA',
enlightenment: '#1380FF',
protection: '#00C3A1',
fury: '#82005E',
rage: '#C74800',
anger: '#89192D',
},
}
},
},
plugins: [],
}