This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
68 lines (67 loc) · 1.66 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
/**
* @type {import('tailwindcss').Config}
*/
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
// TODO: Remove the following plugin after the MDX migration is complete
plugins: [require("@tailwindcss/typography")],
theme: {
extend: {
colors: {
blue: {
10: "#111A20",
20: "#1C2C35",
30: "#243B4A",
40: "#416883",
50: "#5E8CA7",
60: "#1D1E26",
},
white: {
10: "#ECF8FF",
20: "#C9E2F0",
30: "#BBC1C7",
},
green: {
10: "#B0FBBC",
20: "#82F9A1",
30: "#83F9A2",
},
},
typography: (theme) => ({
DEFAULT: {
css: {
code: {
color: theme("colors.gray.400"),
},
h1: {
color: theme("colors.green.30"),
fontWeight: theme("fontWeight.bold"),
fontSize: theme("fontSize.3xl"),
},
h2: {
color: theme("colors.green.10"),
fontWeight: theme("fontWeight.semibold"),
fontSize: theme("fontSize.2xl"),
},
a: {
color: theme("colors.white.10"),
textDecorationColor: theme("colors.gray.100"),
},
p: {
color: theme("colors.white.20"),
},
li: {
color: theme("colors.white.20"),
},
strong: {
color: theme("colors.white.20"),
},
address: {
color: theme("colors.white.20"),
},
},
},
}),
},
},
};