Files
impersonator/style/theme.ts

28 lines
402 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",
},
},
},
config,
colors,
});
2021-08-22 03:44:44 +05:30
export default theme;