freshyo/packages/ui/src/tailwind.config.ts
2026-01-24 00:13:15 +05:30

17 lines
311 B
TypeScript
Executable file

import type { Config } from "tailwindcss";
import { colors } from "./lib/theme-colors";
const tailwindConfig: Config = {
content: [],
theme: {
extend: {
colors: {
// Theme colors directly available
...colors,
},
},
},
plugins: [],
};
export default tailwindConfig;