From a9f07464c6b8df3679624684cc504a42dae10bcc Mon Sep 17 00:00:00 2001 From: Mosh Hamedani Date: Mon, 6 Mar 2023 11:42:37 -0800 Subject: [PATCH] Customize the theme to get darker grays --- src/theme.ts | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/src/theme.ts b/src/theme.ts index 1e51aab..da3d0a0 100644 --- a/src/theme.ts +++ b/src/theme.ts @@ -4,6 +4,22 @@ const config: ThemeConfig = { 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; \ No newline at end of file