This commit is contained in:
Mikan
2026-06-20 19:13:05 +03:00
parent 32575e217e
commit 8514c63ec6
193 changed files with 22105 additions and 11660 deletions

View File

@@ -0,0 +1,37 @@
/** @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: [],
};