Files
ecoconnect/client/tailwind.config.js
2024-06-28 13:35:01 +08:00

20 lines
409 B
JavaScript

const { nextui } = require("@nextui-org/react");
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'red-color': '#F36E6E', // Your color code
},
},
},
darkMode: "class",
plugins: [nextui()],
};