16 lines
287 B
JavaScript
16 lines
287 B
JavaScript
import customColors from "./src/config/colors.ts";
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
darkMode: "data-theme",
|
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
...customColors,
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|