-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
61 lines (51 loc) · 1.09 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.tsx'],
theme: {
colors: {
green: {
'01': '#50B2C0',
'02': '#255D6A',
'03': '#0A313C',
},
purple: {
'01': '#8381D9',
'02': '#2A2879',
},
gray: {
'01': '#F8F9FC',
'02': '#E6E8F2',
'03': '#D1D6E4',
'04': '#8D95AF',
'05': '#303F73',
'06': '#252D4A',
'07': '#181C2A',
'08': '#0E1116',
},
danger: {
light: '#F75A68',
},
black: '#000',
transparent: 'transparent',
},
extend: {
fontFamily: {
sans: ['var(--nunito-sans)'],
},
backgroundImage: {
'gradient-horizontal': 'linear-gradient(90deg, #7FD1CC 0%, #9694F5 100%)',
'gradient-vertical': 'linear-gradient(180deg, #7FD1CC 0%, #9694F5 100%)',
},
padding: {
18: '4.5rem',
},
height: {
18: '4.5rem',
},
width: {
18: '4.5rem',
},
},
},
plugins: [require('tailwindcss-animate')],
};