diff --git a/src/consts/themes.js b/src/consts/themes.js new file mode 100644 index 0000000..8faad71 --- /dev/null +++ b/src/consts/themes.js @@ -0,0 +1,8 @@ +import { createTheme } from "@nextui-org/react"; + +export const darkTheme = createTheme({ + type: "dark", + theme: { + colors: {}, // override dark theme colors + }, +});