-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
87 lines (87 loc) · 2.13 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
80
81
82
83
84
85
86
87
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
important: true,
theme: {
extend: {
fontSize: {
'9px': '9px',
'12px': '12px',
'24px': '24px'
},
fontFamily: {
fredoka: ['Fredoka One', 'ui-serif']
},
colors: {
primary: {
DEFAULT: '#471bb2',
light: '#e8e4f5',
lighter: '#D7CDF0',
lightest: '#F3F2F8',
dark: '#4F4F4F',
hover: '#15006d',
disabled: '#9182c6',
gradientVia: '#5521B6',
gradientTo: '#2DB7C4',
gray: '#828282',
midGray: '#F1F1F1',
lightGray: '#BDBDBD',
red: '#FF0000',
yellow: '#ffd654'
},
secondary: {
DEFAULT: '#A38DD8',
light: '#FA6F44',
lighter: '#FFE6DE',
lightest: '#F0EDFF',
alternate: '#5E5E5E'
},
misc: {
green: '#EDFFEF',
yellow: '#EDAB01'
},
warning: {
DEFAULT: '#FA6F44'
},
error: {
DEFAULT: '#FF5F37',
light: '#FDD9D7',
dark: '#DA1A0F'
},
link: {
DEFAULT: '#518cff',
alternate: '#471bb2'
},
success: {
DEFAULT: '#1BB233',
alternate: '#56A86A'
}
},
maxWidth: {
container: '1040px'
},
borderRadius: {
card: '10px',
button: '20px'
},
height: {
tokenInput: '80px'
},
backgroundImage: {
stakeCard:
'radial-gradient(50.72% 70.72% at 100% 100%, rgba(71, 46, 219, 0.7) -20%, rgba(108, 108, 234, 0.35) 18.65%, rgba(45, 183, 196, 0.308) 58.75%, rgba(45, 183, 196, 0) 100%)',
epochReleaseCard: 'linear-gradient(54.93deg, #15006d 12.16%, #15006d 33.28%, #5521b6 66.19%, #2db7c4 93.15%)'
}
}
},
variants: {
extend: {
ringWidth: ['active'],
ringColor: ['active'],
opacity: ['disabled'],
borderColor: ['focus'],
backgroundColor: ['focus']
}
},
plugins: []
}