MAESTRO: scaffold frontend tooling and config

This commit is contained in:
Mariusz Banach
2026-02-17 22:58:10 +01:00
parent 4140fe26bb
commit b2241a6a95
25 changed files with 8502 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
colors: {
background: "#1e1e2e",
surface: "#282a36",
text: "#f8f8f2",
spam: "#ff5555",
suspicious: "#ffb86c",
clean: "#50fa7b",
accent: "#bd93f9",
info: "#8be9fd",
},
},
},
plugins: [],
};
export default config;