Files
impersonator/style/theme.ts

29 lines
426 B
TypeScript
Raw Normal View History

2022-01-22 05:35:21 +05:30
import { extendTheme, ThemeConfig } from "@chakra-ui/react";
2021-08-22 03:44:44 +05:30
2024-03-10 04:41:36 +05:30
const colors = {
brand: {
black: "#101010",
lightBlack: "#1a1a1a",
},
};
2022-01-22 05:35:21 +05:30
const config: ThemeConfig = {
2021-08-22 03:44:44 +05:30
initialColorMode: "dark",
useSystemColorMode: false,
};
2024-03-10 04:41:36 +05:30
const theme = extendTheme({
styles: {
global: {
body: {
bg: "brand.black",
2024-10-30 19:25:32 +04:00
color: "white",
2024-03-10 04:41:36 +05:30
},
},
},
config,
colors,
});
2021-08-22 03:44:44 +05:30
export default theme;