-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
49 lines (46 loc) · 1.12 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
import { type Config } from "tailwindcss";
import defaultTheme from "tailwindcss/defaultTheme";
const ldPrimaryOrange = "#f25b3d";
export default {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
ldJetBlack: "#1A1A17",
ldAlmostWhite: "#FFFDF5",
ldBeigeWhite: "#f6f2e6",
ldDeepGreen: "#1F4038",
ldPrimaryOrange: {
100: "#f79d8b",
200: "#f68c77",
300: "#f57c64",
400: "#f36b50",
500: ldPrimaryOrange,
600: "#da5237",
700: "#c24931",
800: "#a9402b",
900: "#913725",
},
ldSageGreen: {
100: "#9CA578",
300: "#889362",
500: "#69714c",
700: "#444931",
900: "#2D3121",
},
primary: ldPrimaryOrange,
},
fontFamily: {
spaceGrotesk: ["Space Grotesk", ...defaultTheme.fontFamily.sans],
},
},
listStyleType: {
none: "none",
disc: "disc",
decimal: "decimal",
square: "square",
roman: "upper-roman",
},
},
plugins: [],
} satisfies Config;