-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.ts
50 lines (48 loc) · 1.06 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
fontFamily: {
main: '"Space Grotesk", system-ui, Roboto, sans-serif',
serif: '"IBM Plex Serif", serif',
mono: '"Space Mono", monospace',
},
extend: {
boxShadow: {
blocks: "2px 2px",
},
colors: {
post: "var(--postMain)",
"post-light": "var(--postLight)",
discord: {
vibrant: "#5864f4",
},
},
},
},
safelist: [
"bg-red-200",
"bg-red-100",
"hover:bg-[#f87171]",
"bg-orange-200",
"bg-orange-100",
"hover:bg-[#fb923c]",
"bg-amber-200",
"bg-amber-100",
"hover:bg-[#fbbf24]",
"bg-green-200",
"bg-green-100",
"hover:bg-[#4ade80]",
"bg-teal-200",
"bg-teal-100",
"hover:bg-[#2dd4bf]",
"bg-violet-200",
"bg-violet-100",
"hover:bg-[#a78bfa]",
"bg-pink-200",
"bg-pink-100",
"hover:bg-[#f472b6]",
],
plugins: [],
} satisfies Config;
export default config;