Files
impersonator/style/theme.ts
2024-10-30 19:25:32 +04:00

29 lines
426 B
TypeScript

import { extendTheme, ThemeConfig } from "@chakra-ui/react";
const colors = {
brand: {
black: "#101010",
lightBlack: "#1a1a1a",
},
};
const config: ThemeConfig = {
initialColorMode: "dark",
useSystemColorMode: false,
};
const theme = extendTheme({
styles: {
global: {
body: {
bg: "brand.black",
color: "white",
},
},
},
config,
colors,
});
export default theme;