-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
60 lines (55 loc) · 1.19 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
spacing: {
'30': '7.5rem',
'4.5': '1.125rem',
},
width: {
18: '4.5rem',
},
colors: {
'purple': '#9A2CEC',
'purple.disabled': '#4B2A63',
'gray': {
50: '#F0F0F0',
75: '#A1A1A1',
100: '#DEDEDE',
200: '#CCCCCC',
400: '#999999',
600: '#777777',
700: '#666666',
800: '#333333',
},
'orange': '#F6C344',
'green': '#53A551',
'red': '#FA504F',
'success': '#00CC9B',
'warning': '#F68C2A',
'error': '#C04641'
},
lineHeight: {
'12': '3rem',
},
fontSize: {
xs: ['12px', '14px'],
sm: ['14px', '16px'],
base: ['16px', '18px'],
"lg": ['20px', '24px'],
'xl': ['28px', '32px'],
'2xl': ['28px', '32px'],
'3xl': ['32px', '38px'],
'4xl': ['36px', '48px']
}
},
},
plugins: [
// eslint-disable-next-line no-undef
require('@tailwindcss/forms'),
],
}