OpenHands/frontend/tailwind.config.js
iFurySt dab86c4a77
Style improve fe layout and interaction (#385)
* style: improve FE layout and interaction, remove daisyui, switch to nextui; reduce the props of Workspace component; adjust style of chat bubble and workspace tabs.
2024-03-31 00:52:34 -04:00

24 lines
524 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}"
],
theme: {
extend: {
colors: {
'bg-dark': 'var(--bg-dark)',
'bg-light': 'var(--bg-light)',
'bg-input': 'var(--bg-input)',
'bg-workspace': 'var(--bg-workspace)'
},
},
},
darkMode: "class",
plugins: [nextui({
defaultTheme: "dark"
})],
}