Skip to content

Commit

Permalink
chore: Switched dark to light
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyro3400 committed Sep 9, 2024
1 parent ff6597a commit 14d8c38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/layout/config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const colors: CustomColors = {
export const components = {
Card: {
defaultProps: (theme: MantineTheme) => ({
withBorder: theme.colorScheme === "light",
withBorder: theme.colorScheme === "dark",
}),
},
Anchor: {
Expand All @@ -26,7 +26,7 @@ export const components = {
backgroundColor:
theme.colorScheme === "dark" ? theme.colors.dark[0] : theme.black,
color:
theme.colorScheme === "dark" ? theme.colors.dark[7] : theme.white,
theme.colorScheme === "light" ? theme.colors.dark[7] : theme.white,
paddingLeft: `calc(${theme.spacing.xs} * .5)`,
paddingRight: `calc(${theme.spacing.xs} * .5)`,
borderRadius: theme.radius.xs,
Expand Down

0 comments on commit 14d8c38

Please sign in to comment.