OpenHands/frontend/tailwind.config.js
Akki 6f795f5e9c
style(code editor): improved UI / UX for code editor (#826)
* style(): improved code edito ui / ux

* fix(): fix build issue and use cn fn

* theme variable updated to tailwind neutral gray

* fix(): fix conflicts

* fix lint errors

---------

Co-authored-by: Jim Su <jimsu@protonmail.com>
2024-04-08 10:32:45 -04:00

15 lines
319 B
JavaScript

/** @type {import('tailwindcss').Config} */
const { nextui } = require("@nextui-org/react");
export default {
content: [
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
plugins: [
nextui({
defaultTheme: "dark",
}),
],
};