37 lines
899 B
TypeScript
37 lines
899 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
darkMode: "class",
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
bureau: {
|
|
bg: "#020409",
|
|
panel: "#0a121e",
|
|
line: "rgba(0, 255, 156, 0.12)",
|
|
accent: "#00ff9c",
|
|
"accent-soft": "#00d4a8",
|
|
cyan: "#7fdbff",
|
|
amber: "#f5c542",
|
|
red: "#ff3344",
|
|
violet: "#bb6bd9",
|
|
text: "#c8d4e6",
|
|
"text-soft": "#8896aa",
|
|
"text-dim": "#5a6678",
|
|
classified: "#ff003c",
|
|
},
|
|
},
|
|
fontFamily: {
|
|
mono: ["var(--font-mono)", "JetBrains Mono", "Menlo", "monospace"],
|
|
sans: ["var(--font-sans)", "Inter", "system-ui", "sans-serif"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|