-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
32 lines (32 loc) · 978 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["src/**/*.{html,md,css}"],
theme: {
extend: {
colors: {
rust: {
50: "#fff6ec",
100: "#ffebd3",
200: "#ffd3a6",
300: "#ffb46e",
400: "#ff8933",
500: "#ff670c",
600: "#f44b02",
700: "#ca3604",
800: "#af2f0d",
900: "#81260d",
950: "#460f04",
},
},
typography: ({ theme }) => ({
rust: {
css: {
"--tw-prose-links": theme("colors.rust[700]"),
"--tw-prose-invert-links": theme("colors.white"),
},
},
}),
},
},
plugins: [require("@tailwindcss/typography")],
};