mirror of
https://github.com/mgeeky/decode-spam-headers.git
synced 2026-02-22 13:33:30 +01:00
MAESTRO: scaffold frontend tooling and config
This commit is contained in:
22
frontend/tailwind.config.ts
Normal file
22
frontend/tailwind.config.ts
Normal 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;
|
||||
Reference in New Issue
Block a user