-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
110 lines (105 loc) · 2.01 KB
/
tailwind.config.js
File metadata and controls
110 lines (105 loc) · 2.01 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/** @type {import('tailwindcss').Config} */
const colors = {
white: "#ffffff",
black: "#000000",
gray: "#555555",
invalid: "#F6546A",
primary: "#0F172A",
secondary: "#9B9DA3",
tertiary: "#6865FE",
whiteSmull: "#CBD5E1",
backGround: "#F9FAFE",
green: "#008379",
yellow: "#FFB24D",
};
module.exports = {
content: ["./src/**/*.{html,ts}"],
theme: {
screens: {
sm: "480px",
md: "768px",
lg: "976px",
xl: "1440px",
},
backgroundColor: {
...colors,
},
borderColor: {
...colors,
"border-1": "#DADADA",
},
colors: {
...colors,
},
fontSize: {
ssm: "0.5rem",
sm: "0.8rem",
base: "1rem",
xl: "1.25rem",
"2xl": "1.563rem",
"3xl": "1.953rem",
"4xl": "2.441rem",
"5xl": "3.052rem",
"6xl": "3.75rem",
"7xl": "4.5rem",
},
fontFamily: {
urbaninst: ["Urbanist", "sans-serif"],
inter: ["Inter", "sans-serif"],
serif: ["Merriweather", "serif"],
},
extend: {
spacing: {
128: "32rem",
144: "36rem",
},
borderRadius: {
"4x0": "6px",
"4xl": "0.5rem",
"4x2": "1rem",
"4x3": "2rem",
},
margin: {
0: "0",
1: "0.25rem",
2: "0.5rem",
3: "0.75rem",
4: "1rem",
5: "1.25rem",
6: "1.5rem",
8: "2rem",
10: "2.5rem",
12: "3rem",
16: "4rem",
20: "5rem",
24: "6rem",
32: "8rem",
40: "10rem",
48: "12rem",
56: "14rem",
64: "16rem",
},
padding: {
0: "0",
1: "0.25rem",
2: "0.5rem",
3: "0.75rem",
4: "1rem",
5: "1.25rem",
6: "1.5rem",
8: "2rem",
10: "2.5rem",
12: "3rem",
16: "4rem",
20: "5rem",
24: "6rem",
32: "8rem",
40: "10rem",
48: "12rem",
56: "14rem",
64: "16rem",
},
},
},
plugins: [],
};