mirror of
https://github.com/mosh-hamedani/game-hub.git
synced 2026-05-21 12:14:32 +02:00
25 lines
438 B
TypeScript
25 lines
438 B
TypeScript
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'
|
|
}
|
|
}
|
|
});
|
|
|
|
export default theme; |