-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.ts
132 lines (128 loc) · 3.02 KB
/
tailwind.config.ts
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
125
126
127
128
129
130
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./lib/components/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
screens: {
'2xs': { max: '320px' },
xs: { max: '384px' },
sm: { max: '480px' },
md: { max: '560px' },
lg: { max: '640px' },
xl: { max: '768px' },
'2xl': { max: '1024px' },
'3xl': { max: '1280px' },
'4xl': { max: '1440px' },
'5px': { max: '1600px' },
'6xl': { max: '1920px' },
},
extend: {
spacing: {
none: '0px',
'025': '1px',
'050': '2px',
'100': '4px',
'150': '6px',
'200': '8px',
'300': '12px',
'350': '13px',
'400': '16px',
'500': '20px',
'600': '24px',
'800': '32px',
'1000': '40px',
'1200': '48px',
'1600': '64px',
'2000': '80px',
'2400': '96px',
'3200': '128px',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
height: {
'100': '550px',
},
width: {
'100': '563px',
'2xs': '320px',
xs: '384px',
sm: '480px',
md: '560px',
lg: '640px',
xl: '768px',
'2xl': '1024px',
'3xl': '1280px',
'4xl': '1440px',
'5px': '1600px',
'6xl': '1920px',
'paragraph-max-width': '720px',
},
maxWidth: {
'100': '563px',
'2xs': '320px',
xs: '384px',
sm: '480px',
md: '560px',
lg: '640px',
xl: '768px',
'2xl': '1024px',
'3xl': '1280px',
'4xl': '1440px',
'5px': '1600px',
'6xl': '1920px',
'paragraph-max-width': '720px',
},
backgroundColor: {
'new-dark': '#0E0E10',
'new-white': '#D7D7DD',
'new-card-border': '#EDEDF0',
'new-white-2': '#F8F9FB',
'new-white-3': '#EFF1F4',
'gray-300': '#C9CBCD',
},
textColor: {
'new-gray': '#60606A',
text: '#212B36',
'gray-300': '#C9CBCD',
'gray-200': '#DFE1E4',
'gray-100': '#C9CBCD',
secondary: '#6B6F76',
},
borderColor: {
'col-1': '#DFE1E4',
'gray-300': '#C9CBCD',
'gray-200': '#DFE1E4',
'gray-100': '#C9CBCD',
},
boxShadow: {
'variant-1': '0px 6px 20px 0px rgba(0, 0, 0, 0.12)',
'variant-2': ' 0px 8px 24px 0px rgba(0, 0, 0, 0.12)',
},
borderRadius: {
none: '0px',
'050': '2px',
'100': '4px',
'150': '6px',
'200': '8px',
'300': '12px',
'400': '16px',
'500': '20px',
'rounded-600': '24px',
full: '9999px',
'rounded-xl': '35px',
},
borderWidth: {
'border-1': '1px',
},
fontSize: {
xs: '13px',
},
},
},
plugins: [],
}
export default config