-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
40 lines (39 loc) · 1023 Bytes
/
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
import type { Config } from "tailwindcss";
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
container: {
center: true,
},
/* p = primary. c = contrast. d = darker. l = lighter. vl = very light */
colors: {
pdd: "#5d2d0a",
pd: "#864e26",
p: "#a76c43",
pl: "#c9946e",
pll: "#f5caac",
cdd: "#073a33",
cd: "#18544c",
c: "#2a6960",
cl: "#457e76",
cll: "#6c9a93",
clll: "#80a39c",
cllll: "#94b2ac",
cvl: "#a9c1bc",
cvll: "#bed0cc",
cvlll: "#d4dfdd",
cvllll: "#e9efee",
"bg-light": "#282830",
"bg-dark": "#161620",
"bg-dark-primary": "#563b2b",
"text-primary": "#fcf1e8",
},
boxShadow: {
"container-left": "30px 0px 40px 35px rgba(0,0,0,0.3);",
"container-top": "0px 30px 40px 35px rgba(0,0,0,0.3);",
},
},
},
plugins: [],
} satisfies Config;