31 lines
684 B
TypeScript
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;
|