2026-06-20 19:13:05 +03:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
|
export default {
|
|
|
|
|
darkMode: "class",
|
|
|
|
|
content: [
|
|
|
|
|
"./index.html",
|
|
|
|
|
"./src/**/*.{ts,tsx}",
|
|
|
|
|
],
|
|
|
|
|
theme: {
|
|
|
|
|
extend: {
|
|
|
|
|
colors: {
|
|
|
|
|
bg: {
|
2026-06-21 02:41:48 +03:00
|
|
|
DEFAULT: "rgb(var(--bg) / <alpha-value>)",
|
|
|
|
|
soft: "rgb(var(--bg-soft) / <alpha-value>)",
|
|
|
|
|
card: "rgb(var(--bg-card) / <alpha-value>)",
|
2026-06-20 19:13:05 +03:00
|
|
|
},
|
|
|
|
|
fg: {
|
2026-06-21 02:41:48 +03:00
|
|
|
DEFAULT: "rgb(var(--fg) / <alpha-value>)",
|
|
|
|
|
muted: "rgb(var(--fg-muted) / <alpha-value>)",
|
|
|
|
|
dim: "rgb(var(--fg-dim) / <alpha-value>)",
|
2026-06-20 19:13:05 +03:00
|
|
|
},
|
|
|
|
|
accent: {
|
2026-06-21 02:41:48 +03:00
|
|
|
DEFAULT: "rgb(var(--accent) / <alpha-value>)",
|
|
|
|
|
hover: "rgb(var(--accent-hover) / <alpha-value>)",
|
2026-06-20 19:13:05 +03:00
|
|
|
},
|
2026-06-21 02:41:48 +03:00
|
|
|
ok: "rgb(var(--ok) / <alpha-value>)",
|
|
|
|
|
warn: "rgb(var(--warn) / <alpha-value>)",
|
|
|
|
|
err: "rgb(var(--err) / <alpha-value>)",
|
2026-06-20 19:13:05 +03:00
|
|
|
},
|
|
|
|
|
fontFamily: {
|
|
|
|
|
sans: ["Inter", "system-ui", "sans-serif"],
|
|
|
|
|
serif: ["Iowan Old Style", "Georgia", "serif"],
|
|
|
|
|
mono: ["JetBrains Mono", "ui-monospace", "monospace"],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
plugins: [],
|
|
|
|
|
};
|