38 lines
804 B
JavaScript
38 lines
804 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
export default {
|
||
|
|
darkMode: "class",
|
||
|
|
content: [
|
||
|
|
"./index.html",
|
||
|
|
"./src/**/*.{ts,tsx}",
|
||
|
|
],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
bg: {
|
||
|
|
DEFAULT: "#0f1115",
|
||
|
|
soft: "#171a21",
|
||
|
|
card: "#1e232c",
|
||
|
|
},
|
||
|
|
fg: {
|
||
|
|
DEFAULT: "#e6e9ef",
|
||
|
|
muted: "#9ca3af",
|
||
|
|
dim: "#6b7280",
|
||
|
|
},
|
||
|
|
accent: {
|
||
|
|
DEFAULT: "#8b5cf6",
|
||
|
|
hover: "#7c3aed",
|
||
|
|
},
|
||
|
|
ok: "#10b981",
|
||
|
|
warn: "#f59e0b",
|
||
|
|
err: "#ef4444",
|
||
|
|
},
|
||
|
|
fontFamily: {
|
||
|
|
sans: ["Inter", "system-ui", "sans-serif"],
|
||
|
|
serif: ["Iowan Old Style", "Georgia", "serif"],
|
||
|
|
mono: ["JetBrains Mono", "ui-monospace", "monospace"],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
};
|