-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
36 lines (34 loc) · 953 Bytes
/
tailwind.config.mjs
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
/** @type {import('tailwindcss').Config} */
import typography from "@tailwindcss/typography";
export default {
darkMode: "class",
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
"d/bg": "#741D12",
"d/primary": "#feeeb8",
"d/secondary": "#2a0d3e",
"d/tertiary": "#df5e37",
"l/bg": "#eeeeee",
"l/primary": "#111111",
"l/secondary": "#555555",
"l/tertiary": "#741D12", //"#999999",
},
},
},
plugins: [typography],
};
// "d/bg": "#111111",
// "d/primary": "#eeeeee",
// "d/secondary": "#999999",
// "d/tertiary": "#555555",
// "l/bg": "#eeeeee",
// "l/primary": "#111111",
// "l/secondary": "#555555",
// "l/tertiary": "#999999",
//wip
// "d/bg": "#121420",
// "d/primary": "#1b2432",
// "d/secondary": "#e3d26f",
// "d/tertiary": "#741D12",