rebase
This commit is contained in:
37
frontend/tailwind.config.js
Normal file
37
frontend/tailwind.config.js
Normal 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: [],
|
||||
};
|
||||
Reference in New Issue
Block a user