-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
106 lines (106 loc) · 3.06 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
body: ["Inter", "Sans Serif"],
title: ["Inter", "Sans Serif"]
},
fontSize: {
body: [
"1rem",
{
lineHeight: "1.5rem"
}
],
h1: [
"3.5rem",
{
lineHeight: "3.75rem"
}
],
h2: [
"2.25rem",
{
lineHeight: "2.625rem"
}
],
h3: [
"1.875rem",
{
lineHeight: "2.25rem"
}
],
h4: [
"1.5rem",
{
lineHeight: "2rem"
}
],
h5: [
"1.25rem",
{
lineHeight: "1.75rem"
}
],
h6: [
"1.125rem",
{
lineHeight: "1.5rem"
}
],
mini: [
"0.75rem",
{
lineHeight: "1.5rem"
}
]
},
colors: {
black: {
DEFAULT: "#000000",
50: "#E6E6E6",
100: "#CCCCCC",
200: "#999999",
300: "#666666",
400: "#333333",
500: "#000000",
600: "#000000",
700: "#000000",
800: "#000000",
900: "#000000"
},
white: {
DEFAULT: "#FFFFFF",
50: "#FFFFFF",
100: "#FCFCFC",
200: "#FCFCFC",
300: "#FAFAFA",
400: "#FAFAFA",
500: "#F7F7F7",
600: "#C7C7C7",
700: "#949494",
800: "#636363",
900: "#303030"
},
primary: {
50: "#f7f7f7",
100: "#e3e3e3",
200: "#c8c8c8",
300: "#a4a4a4",
400: "#818181",
500: "#737373",
600: "#515151",
700: "#434343",
800: "#383838",
900: "#313131",
950: "#1a1a1a"
},
badge: "#F1F5F9",
badgeText: "#475569"
}
}
},
plugins: [require("@tailwindcss/typography")]
};