-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
37 lines (37 loc) · 962 Bytes
/
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
import type { Config } from 'tailwindcss';
export default <Partial<Config>>{
theme: {
boxShadow: {
1: '0px 3px 52px rgba(90, 92, 102, 0.06)',
2: '3px 7px 18px rgba(103, 105, 116, 0.0833424)',
3: '-5px 10px 52px rgba(90, 92, 102, 0.06)',
4: '-10px 5px 18px rgba(103, 105, 116, 0.0833424)',
},
colors: {
transparent: 'transparent',
'blue-100': '#8C8EFF',
'blue-200': '#595CFF',
'blue-300': '#383BE4',
green: '#00CB6F',
orange: '#FFBC2C',
red: '#EE7764',
'red-100': '#FDE8E8',
'red-200': '#F8B4B4',
'red-300': '#F05252',
'red-400': '#C81E1E',
'red-500': '#771D1D',
white: '#FFFFFF',
'gray-100': '#F9F9FB',
'gray-200': '#F0F0F5',
'gray-300': '#E6E6EB',
'gray-400': '#AFB1BD',
'gray-500': '#82828B',
black: '#000000',
},
extend: {
spacing: {
'max-content-w': '1160px',
},
},
},
};