-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
65 lines (65 loc) · 1.36 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./components/**/*.tsx',
'./pages/**/*.tsx'
],
theme: {
fontFamily: {
'sans': ['Inter']
},
extend: {
animation: {
'spin-fast': 'spin .7s linear infinite'
},
colors: {
'primary': '#7C52BF',
'gray': '#878787',
'light-gray': '#D2D2D2',
'input-bg': '#F8F8F8'
},
spacing: {
'0': '0rem',
'1': '1rem',
'2': '2rem',
'3': '3rem',
'4': '4rem',
'5': '5rem',
'6': '6rem',
'7': '7rem',
'8': '8rem',
'9': '9rem',
'10': '10rem',
'11': '11rem',
'12': '12rem',
'13': '13rem',
'14': '14rem',
'15': '15rem',
'16': '16rem',
'17': '17rem',
'18': '18rem',
'19': '19rem',
'20': '20rem',
'21': '21rem',
'22': '22rem',
'23': '23rem',
'24': '24rem',
'25': '25rem',
'26': '26rem',
'27': '27rem',
'28': '28rem',
'29': '29rem',
'30': '30rem',
'31': '31rem',
'32': '32rem',
'33': '33rem',
'34': '34rem'
},
boxShadow: {
'normal': '1px 1px 4px rgba(0, 0, 0, 0.2)',
'toggle': '0 0 2px rgba(0, 0, 0, .3)'
}
},
},
plugins: [],
}