Files
keymanager/web/tailwind.config.ts
T
domrichardson c9868b2108
Agent Release / build (push) Has been cancelled
Server Deploy / deploy (push) Has been cancelled
first commit
2026-06-15 13:58:45 +01:00

31 lines
684 B
TypeScript

import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "#0f1117",
surface: "#1a1d27",
"surface-2": "#232635",
border: "#2e3147",
"text-primary": "#e8eaf0",
"text-secondary": "#9095a8",
accent: "#6366f1",
"accent-hover": "#4f52d4",
success: "#22c55e",
warning: "#f59e0b",
danger: "#ef4444",
"danger-hover": "#dc2626",
},
},
},
plugins: [],
};
export default config;