17 lines
311 B
TypeScript
Executable file
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;
|