9 lines
166 B
JavaScript
9 lines
166 B
JavaScript
|
import { createTheme } from "@nextui-org/react";
|
||
|
|
||
|
export const darkTheme = createTheme({
|
||
|
type: "dark",
|
||
|
theme: {
|
||
|
colors: {}, // override dark theme colors
|
||
|
},
|
||
|
});
|