-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
76 lines (76 loc) · 1.67 KB
/
Copy pathtailwind.config.js
File metadata and controls
76 lines (76 loc) · 1.67 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./features/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
safelist: [
"animate-pulse",
"animate-spin",
"bg-secondary",
"text-primary",
"border-primary",
],
theme: {
extend: {
screens: {
xs: "375px",
sm: "480px",
md: "600px",
lg: "768px",
xl: "1024px",
"2xl": "1200px",
},
spacing: {
1: "10px",
1.5: "15px",
2: "20px",
3: "30px",
4: "40px",
5: "50px",
6: "60px",
},
maxWidth: {
"screen-xl": "1200px",
},
fontSize: {
xs: "12px",
sm: "14px",
base: "16px",
lg: "18px",
xl: "20px",
"2xl": "24px",
"3xl": "30px",
"4xl": "40px",
"5xl": "50px",
"6xl": "60px",
h1: [
"clamp(2.5rem, 5vw, 50px)",
{ lineHeight: "1.2", fontWeight: "500" },
],
h2: [
"clamp(1.875rem, 4vw, 40px)",
{ lineHeight: "1.3", fontWeight: "500" },
],
h3: [
"clamp(1.25rem, 3vw, 30px)",
{ lineHeight: "1.4", fontWeight: "500" },
],
},
colors: {
background: "#1C1C1C",
primary: "#4CFFC0",
"primary-light": "#A0FFE0",
"primary-dark": "#00B37E",
secondary: "#363636",
"secondary-light": "#5A5A5A",
"secondary-dark": "#1A1A1A",
accent: "#D4424AFF",
border: "#A2A2A2",
},
},
},
plugins: [],
};