mirror of
https://github.com/mosh-hamedani/game-hub.git
synced 2026-05-21 12:14:32 +02:00
Customize the theme to get darker grays
This commit is contained in:
parent
8f5b32328b
commit
a9f07464c6
18
src/theme.ts
18
src/theme.ts
|
|
@ -4,6 +4,22 @@ const config: ThemeConfig = {
|
||||||
initialColorMode: 'dark'
|
initialColorMode: 'dark'
|
||||||
};
|
};
|
||||||
|
|
||||||
const theme = extendTheme({ config });
|
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;
|
export default theme;
|
||||||
Loading…
Reference in a new issue