From 14d8c38ad472106af012068002fe6c499c76d080 Mon Sep 17 00:00:00 2001 From: Kyro3400 <66625200+Kyro3400@users.noreply.github.com> Date: Mon, 9 Sep 2024 15:20:28 -0400 Subject: [PATCH] chore: Switched dark to light --- components/layout/config.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/layout/config.tsx b/components/layout/config.tsx index 9e286b9..bae7a13 100644 --- a/components/layout/config.tsx +++ b/components/layout/config.tsx @@ -17,7 +17,7 @@ export const colors: CustomColors = { export const components = { Card: { defaultProps: (theme: MantineTheme) => ({ - withBorder: theme.colorScheme === "light", + withBorder: theme.colorScheme === "dark", }), }, Anchor: { @@ -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,