27 lines
584 B
TypeScript
27 lines
584 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
background: "#0f1117",
|
|
card: "#1a1f2e",
|
|
"card-border": "rgba(255,255,255,0.1)",
|
|
primary: "#1d4ed8",
|
|
"text-primary": "#f1f5f9",
|
|
"text-secondary": "#94a3b8",
|
|
success: "#22c55e",
|
|
error: "#ef4444",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|