mosh-game-hub/src/theme.ts

25 lines
438 B
TypeScript
Raw Normal View History

2023-02-28 19:16:23 +01:00
import { extendTheme, ThemeConfig } from "@chakra-ui/react";
const config: ThemeConfig = {
initialColorMode: 'dark'
};
const theme = extendTheme({
config,
colors: {
gray: {
50: '#f9f9f9',
100: '#ededed',
200: '#d3d3d3',
300: '#b3b3b3',
400: '#a0a0a0',
500: '#898989',
600: '#6c6c6c',
700: '#202020',
800: '#121212',
900: '#111'
}
}
});
2023-02-28 19:16:23 +01:00
export default theme;