Files
LiquidCode_Frontend/tailwind.config.js
Виталий Лавшонок 4d0cafdce8 Init
2025-10-22 20:51:12 +03:00

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: [],
};