forked from rolic-hub/moralis-x-filecoin-frontend
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
103 lines (98 loc) · 2.34 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}'
],
theme: {
screens: {
sm: '640px',
// => @media (min-width: 640px) { ... }
md: '1024px',
// => @media (min-width: 1024px) { ... }
lg: '1280px'
// => @media (min-width: 1280px) { ... }
},
fontSize: {
xs: '.75rem',
sm: '.875rem',
tiny: '.875rem',
base: '1rem',
lg: '1.125rem',
xl: '1.25rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
'4xl': '2.25rem',
'5xl': '3rem',
'6xl': '4rem',
'7xl': '5rem',
custom: '22px'
},
maxWidth: {
button: '7rem'
},
colors: {
'Text-green': '#13DA92',
'light-green': '#12ECA0',
'black-background': '#151515',
footer: '#151313',
'white-background': '#ffffff',
gray: '#575151',
form: '#221F1F',
DarkBlack: '#000000',
orange: '#ea580c',
lightOrange: '#FF7F27',
darkGreen: '#39BF97',
progressBar: '#D9D9D9',
red: '#CB0E3B',
lightRed: '#FF2727',
blue: '#2399B4',
lightBlue: '#00C0F4'
},
extend: {
zIndex: {
m: '-1'
},
lineHeight: {
'extra-loose': '3rem'
},
boxShadow: {
green: '0px 0.28rem 0.28rem 0px rgba(18, 236, 160, 1)',
orange: '0px 0.28rem 0.28rem 0px rgba(255, 127, 39, 1)',
red: '0px 0.28rem 0.28rem 0px rgba(194, 5, 51, 1)',
blue: '0px 0.28rem 0.28rem 0px rgba(14, 182, 235 , 1)',
lightBlue: '0px 0.28rem 0.28rem 0px rgba(0, 192, 244 , 1)'
},
width: {
custom1: '40rem',
custom2: '50rem',
custom3: '80rem',
custom4: '18rem',
custom5: '100%',
custom6: '40rem',
custom7: '20rem',
custom8: '26rem'
},
margin: {
custom: '36rem',
form0: '14rem',
form1: '19.5rem',
form2: '16.5rem',
form3: '17rem',
form4: '18rem',
form5: '18rem',
form6: '21.5rem',
form7: '20rem',
form8: '21rem',
form9: '22rem',
form10: '10rem',
custom6: '28rem'
},
height: {
fullPage: '140vh',
fullScreen: '100vh'
}
}
},
plugins: [require('@tailwindcss/line-clamp')]
};