This repository has been archived on 2023-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
imageify/src/consts/themes.js

12 lines
211 B
JavaScript
Raw Normal View History

2022-11-17 05:59:14 +00:00
import { createTheme } from "@nextui-org/react";
export const darkTheme = createTheme({
type: "dark",
theme: {
2022-11-17 09:58:47 +00:00
colors: {
white: "#ffffff",
black: "#000000",
}, // override dark theme colors
2022-11-17 05:59:14 +00:00
},
});