Skip to content

Commit

Permalink
Customize the theme to get darker grays
Browse files Browse the repository at this point in the history
  • Loading branch information
KavetiRohith committed Sep 13, 2023
1 parent 818daac commit 31a5636
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ const config: ThemeConfig = {
useSystemColorMode: false,
};

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;

0 comments on commit 31a5636

Please sign in to comment.