first commit
Agent Release / build (push) Has been cancelled
Server Deploy / deploy (push) Has been cancelled

This commit is contained in:
domrichardson
2026-06-15 13:58:45 +01:00
commit c9868b2108
55 changed files with 11076 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
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;