-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
75 lines (75 loc) · 1.79 KB
/
tailwind.config.cjs
File metadata and controls
75 lines (75 loc) · 1.79 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
module.exports = {
content: ["./src/**/*.{astro,html,js,ts,md,mdx}"],
darkMode: "class",
corePlugins: {
preflight: false,
},
theme: {
extend: {
colors: {
primary: "#173854",
"primary-shade": "#102538",
"primary-glare": "#22547c",
highlight: "#fedb8b",
light: "#ffffff",
mid: "#cccccc",
dark: "#333333",
slate: "#404040",
red: {
50: "#fef2f2",
100: "#fee2e2",
200: "#fecaca",
300: "#fca5a5",
400: "#f87171",
500: "#ef4444",
600: "#dc2626",
700: "#b91c1c",
800: "#991b1b",
900: "#7f1d1d",
950: "#450a0a",
},
},
spacing: {
base: "1rem",
100: "0.5rem",
208: "52rem",
300: "0.8rem",
500: "1.25rem",
600: "1.56rem",
700: "1.95rem",
800: "2.44rem",
900: "3.05rem",
max: "4rem",
},
fontFamily: {
base: "'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif",
sans: "'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif",
heading:
"'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif",
},
fontSize: {
100: "0.5rem",
300: "0.8rem",
500: "1.25rem",
600: "1.56rem",
700: "1.95rem",
800: "2.44rem",
900: "3.05rem",
base: "1rem",
max: "4rem",
},
lineHeight: {
tight: "1.2",
mid: "1.5",
loose: "1.7",
},
zIndex: {
300: "0",
400: "10",
500: "20",
600: "30",
700: "40",
},
},
},
};