forked from DeterminateSystems/flakehub-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
33 lines (32 loc) · 857 Bytes
/
tailwind.config.ts
File metadata and controls
33 lines (32 loc) · 857 Bytes
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
import typography from "@tailwindcss/typography";
import type { Config } from "tailwindcss";
export default {
content: ["./components/**/*.tsx", "./theme/config.tsx"],
darkMode: "class",
theme: {
extend: {
borderWidth: {
"5/4": "1.25px",
},
colors: {
dark: "rgb(15, 17, 23)",
code: "#111b27",
"ds-gold": "#faa61a",
"ds-magenta": "#cd1e8b",
"ds-night-sky": "#211d52",
"ds-ocean-blue": "#086bb5",
"ds-orange": "#ea741f",
"ds-red": "#ec2c5b",
"ds-rich-blue": "#0d4d9c",
"ds-sky-blue": "#1e9fd9",
"ds-violet": "#8b2cbf",
// Brands
"twitter-blue": "#1da1f2",
"mastodon-purple": "rgb(86, 58, 204)",
// Misc
"rss-orange": "#f99000",
},
},
},
plugins: [typography],
} satisfies Config;