mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
* 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.
24 lines
524 B
JavaScript
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"
|
|
})],
|
|
}
|
|
|