-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
58 lines (56 loc) · 1.56 KB
/
tailwind.config.ts
File metadata and controls
58 lines (56 loc) · 1.56 KB
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
51
52
53
54
55
56
57
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
// FocoQuest Design System Colors
parchment: {
DEFAULT: "#FFFAF0", // FloralWhite / Light cream
50: "#FFFBEB", // Lighter parchment
100: "#FEF3C7", // Amber 100
},
wood: {
DEFAULT: "#1C1917", // Stone 900
600: "#57534E", // Stone 600
700: "#44403C", // Stone 700
800: "#292524", // Stone 800
900: "#1C1917", // Stone 900
},
quest: {
DEFAULT: "#2563EB", // Blue 600 (XP)
500: "#3B82F6", // Blue 500
600: "#2563EB", // Blue 600
800: "#1E40AF", // Blue 800
},
danger: {
DEFAULT: "#DC2626", // Red 600 (HP)
500: "#EF4444", // Red 500
600: "#DC2626", // Red 600
800: "#991B1B", // Red 800
},
gold: {
DEFAULT: "#FACC15", // Yellow 400
400: "#FACC15", // Yellow 400
500: "#EAB308", // Yellow 500
900: "#713F12", // Yellow 900
},
},
fontFamily: {
rpg: ["var(--font-rpg)", "cursive"],
sans: ["var(--font-inter)", "Inter", "sans-serif"],
},
letterSpacing: {
rpg: "-0.05em",
},
},
},
plugins: [],
};
export default config;