29 lines
426 B
TypeScript
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;
|