20 lines
409 B
JavaScript
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()],
|
|
};
|