mirror of
https://github.com/mgeeky/decode-spam-headers.git
synced 2026-02-22 21:43:30 +01:00
23 lines
438 B
TypeScript
23 lines
438 B
TypeScript
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;
|