-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
79 lines (79 loc) · 1.74 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
75
76
77
78
79
module.exports = {
content: ['./**/*.{html,ts,tsx}'],
mode: 'jit',
theme: {
extend: {
colors: {
dashboard: {
green: {
1: '#3BA55C',
},
gray: {
1: '#F5F5F5',
2: '#9399A1',
3: '#E4E4E4',
4: '#979CA3',
5: '#F8F8F8',
6: '#DFE0E0',
7: '#EBEBEB',
8: '#7A7E85',
9: '#F4F4F7',
},
red: {
1: '#FD5E59',
},
},
foreground: {
DEFAULT: '#111827',
secondary: '#4B5563',
},
discord: {
DEFAULT: '#6875ED',
},
mochi: {
DEFAULT: '#E88B88',
50: '#FBE9E8',
100: '#F9DEDD',
200: '#F4C9C8',
300: '#F0B5B3',
400: '#ECA09D',
500: '#E88B88',
600: '#E47673',
700: '#E0615D',
800: '#DC4D48',
900: '#D73833',
gray: '#F6F5F5',
},
rarity: {
common: '#98A3B6',
uncommon: '#24D3EE',
rare: ' #7AA5F4',
legendary: '#f59e0b',
mythic: '#FFA3A9',
epic: '#FFA3A9',
},
white: {
DEFAULT: '#fafafd',
pure: '#FFFFFF',
},
},
blur: {
'4xl': '128px',
},
boxShadow: {
full: '0px 4px 16px rgba(0, 0, 0, 0.15)',
card: '0px 0.883215px 2.64964px rgba(0, 0, 0, 0.2)',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-10px)' },
},
},
animation: {
float: 'float 5s ease-in-out infinite',
},
},
},
plugins: [],
}