-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
73 lines (72 loc) · 1.51 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
66
67
68
69
70
71
72
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,jsx,ts,tsx}",
"./src/components/**/*.{js,jsx,ts,tsx}",
"./src/Providers/**/*.{tsx, ts}",
],
theme: {
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1440px',
'2xl': '1536px',
'3xl': '1728px',
},
extend: {
colors: {
grey: '#dfdfdf',
orange: '#d87d4a',
'grey-light': '#f5f5f5'
},
letterSpacing: {
'2px': '2px',
'thirds': '3.33333px',
'fourths': '4.16667px'
},
spacing: {
'1px': '1px',
'1.5px': '1.5px',
'5px': '5px',
'6px': '6px',
'10px': '10px',
'15px': '15px',
'19px': '19px',
'30px': '30px',
'50px': '50px',
'13': '52px',
'38px': '38px',
'54px': '54px',
'17': '68px',
'18': '72px',
'25': '100px',
'27': '108px',
'28': '112px',
'30': '120px',
'34': '136px',
'35': '140px',
'43': '172px',
'50': '200px',
'68': '272px',
'294px': '294px',
'375px': '375px',
'125': '500px'
},
lineHeight: {
'10px': '10px',
'17px': '17px',
'25px': '25px',
'12': '48px',
},
fontSize: {
'13px': '13px',
'15px': '15px',
'18px': '18px',
'32px': '32px',
'40px': '40px',
},
},
},
plugins: [],
}