-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
39 lines (38 loc) · 994 Bytes
/
tailwind.config.ts
File metadata and controls
39 lines (38 loc) · 994 Bytes
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
import type { Config } from "tailwindcss";
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
// Explicitly specify for faster content scanning
"./src/ui/**/*.{js,ts,jsx,tsx}",
"./src/ui/pages/**/*.{js,ts,jsx,tsx}",
"./src/ui/components/**/*.{js,ts,jsx,tsx}",
],
// Enable safelist for dynamic classes if needed (helps with JIT)
safelist: [],
theme: {
extend: {
colors: {
panel: {
900: "#11151b",
800: "#171d25",
700: "#222b36",
},
accent: {
500: "#2ca6ff",
400: "#53b5ff",
},
},
boxShadow: {
depth: "0 18px 48px rgba(0, 0, 0, 0.45)",
panel: "0 10px 30px rgba(0, 0, 0, 0.35)",
},
fontFamily: {
sans: ["Segoe UI Variable", "Segoe UI", "Noto Sans", "sans-serif"],
},
},
},
// Disable dark mode class detection for faster builds
darkMode: "class",
plugins: [],
} satisfies Config;