-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
123 lines (123 loc) · 2.48 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
safelist: [
'from-[#FFFFFF20]',
'from-[#FFD700]',
'from-[#A9A9A9]',
'to-white',
],
theme: {
colors: {
black: '#000211',
white: '#FBF3FF',
grey1: '#BBBABA',
grey2: '#989898',
grey3: '#454545',
grey4: '#1E1E1E',
pink: '#E801BE',
blue: '#334FE8',
red: '#D28686',
green: '#76CE7A',
transparent: 'transparent',
lightGreen: '#89C66D',
pureWhite: '#FFFFFF',
},
fontFamily: {
sans: ['Satoshi-Variable', 'sans-serif'],
display: ['ClashDisplay-Variable', 'sans-serif'],
},
fontSize: {
'2xs': '10px',
xs: '12px',
sm: '14px',
md: '16px',
lg: '18px',
xl: '20px',
'2xl': '24px',
'3xl': '28px',
'4xl': '32px',
'5xl': '36px',
'6xl': '40px',
'7xl': '44px',
'8xl': '48px',
'9xl': '52px',
'10xl': '56px',
'11xl': '60px',
'12xl': '64px',
'13xl': '68px',
'14xl': '72px',
'15xl': '76px',
'16xl': '80px',
'17xl': '84px',
'18xl': '88px',
'19xl': '92px',
'20xl': '96px',
'21xl': '100px',
},
borderRadius: {
none: '0',
xs: '4px',
sm: '8px',
md: '12px',
lg: '16px',
xl: '20px',
'2xl': '24px',
'3xl': '28px',
'4xl': '32px',
'5xl': '36px',
'6xl': '40px',
'7xl': '44px',
'8xl': '48px',
full: '9999px',
},
screens: {
'3xs': '300px',
'2xs': '360px',
xs: '480px',
sm: '640px',
md: '768px',
lg: '840px',
xl: '1024px',
'2xl': '1280px',
'3xl': '1400px',
'4xl': '1600px',
'5xl': '1800px',
},
extend: {
spacing: {
0.25: '1px',
4.5: '18px',
5.5: '22px',
18: '72px',
},
keyframes: {
typing: {
"0%": {
width: "0%",
visibility: "hidden"
},
"100%": {
width: "100%"
}
},
blink: {
"50%": {
borderColor: "transparent"
},
"100%": {
borderColor: "white"
}
}
},
animation: {
typing: "typing 1s steps(20) forwards, blink .9s infinite"
},
},
},
plugins: [],
};