Files
tfm_ainventory/frontend/tailwind.config.ts
2026-04-10 14:05:50 +03:00

23 lines
448 B
TypeScript

import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
primary: {
DEFAULT: "#3b82f6",
foreground: "#ffffff",
},
},
},
},
plugins: [],
};
export default config;