mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
19 lines
261 B
TypeScript
19 lines
261 B
TypeScript
import { heroui } from "@heroui/react";
|
|
|
|
export default heroui({
|
|
defaultTheme: "dark",
|
|
layout: {
|
|
radius: {
|
|
small: "5px",
|
|
large: "20px",
|
|
},
|
|
},
|
|
themes: {
|
|
dark: {
|
|
colors: {
|
|
primary: "#4465DB",
|
|
},
|
|
},
|
|
},
|
|
});
|