-
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.33 KB
/
Copy pathtailwind.config.ts
File metadata and controls
58 lines (56 loc) · 1.33 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
58
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
content: ["./src/**/*.{ts,tsx,html,js}"],
theme: {
container: {
center: true,
padding: "2rem",
screens: { "2xl": "1400px" },
},
extend: {
colors: {
border: "hsl(var(--border))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
parchment: {
50: "#FDFBF7",
100: "#F7F3E9",
200: "#EFE6D5",
900: "#2A2418",
},
midnight: {
900: "#0B132B",
950: "#050914",
},
gold: {
400: "#E6C659",
500: "#D4AF37",
600: "#B89528",
},
zinc: {
50: "#fafafa",
100: "#f4f4f5",
200: "#e4e4e7",
300: "#d4d4d8",
400: "#a1a1aa",
500: "#71717a",
600: "#52525b",
700: "#3f3f46",
800: "#27272a",
900: "#18181b",
950: "#09090b",
},
},
fontFamily: {
mono: ["JetBrains Mono", "monospace"],
sans: ["Inter", "sans-serif"],
serif: ["Playfair Display", "Merriweather", "Georgia", "serif"],
},
},
},
plugins: [],
};
export default config;