-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
124 lines (124 loc) · 2.92 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
screens: {
xsm: '425px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
},
extend: {
colors: {
input: {
checked: '#09CBBF',
disabled: '#D7D7D7',
primary: '#DEE1E7',
secondary: '#FFFFFF',
unchecked: '#D7D7D7',
inverse: '#232324',
'inverse-hover': '#323335',
},
icon: {
tertiary: '#B3B3B3',
},
dark: {
90: '#232324',
},
primary: '#FFFFFF',
button: {
primary: '#2A2A2B',
'primary-disabled': '#656564',
secondary: '#EBEBEB',
},
accent: {
success: '#08C0B4',
error: {
DEFAULT: '#F62D2D',
lighter: '#FF7373',
},
warning: {
DEFAULT: '#ff9900',
lighter: '#ffb23d',
},
},
},
textColor: {
primary: '#232324',
secondary: '#434445',
tertiary: '#737373',
quaternary: '#888989',
inverse: '#FFFFFF',
},
backgroundColor: {
secondary: '#F9F9F9',
},
backgroundImage: {
'gradient-button':
'linear-gradient(95deg, #2B2D2D 4.07%, #4B4D4E 51.31%, #2B2D2D 95.93%)',
'gradient-wallet-button':
'linear-gradient(95deg, #232324 4.07%, #323335 50%, #232324 95.93%)',
'gradient-background':
'radial-gradient(80.53% 72.48% at 50% 47.53%, #FFF 0%, #EAEBEB 100%)',
},
boxShadow: {
action:
'0px 129.333px 103.467px 0px rgba(0, 0, 0, 0.07), 0px 54.032px 43.226px 0px rgba(0, 0, 0, 0.05), 0px 16.195px 12.956px 0px rgba(0, 0, 0, 0.04), 0px 8.601px 6.881px 0px rgba(0, 0, 0, 0.03), 0px 3.579px 2.863px 0px rgba(0, 0, 0, 0.02)',
},
fontSize: {
h1: [
'3rem',
{
fontWeight: 400,
lineHeight: '3.5rem',
},
],
highlight: [
'1.5rem',
{
fontWeight: 400,
lineHeight: '2rem',
},
],
h2: [
'1.063rem',
{
fontWeight: 400,
lineHeight: '1.25rem',
},
],
text: [
'0.938rem',
{
fontWeight: 400,
lineHeight: '1.125rem',
},
],
subtext: [
'0.813rem',
{
fontWeight: 400,
lineHeight: '1rem',
},
],
button: [
'0.938rem',
{
fontWeight: 400,
lineHeight: '1.25rem',
},
],
caption: [
'0.688rem',
{
fontWeight: 400,
lineHeight: '0.875rem',
},
],
},
},
},
plugins: [],
}