diff --git a/src/contexts/Theme.tsx b/src/contexts/Theme.tsx index cb61812..fca0bff 100644 --- a/src/contexts/Theme.tsx +++ b/src/contexts/Theme.tsx @@ -83,9 +83,9 @@ export const ThemePresets: Record = { }, dark: { backgroundPrimary: "#2e2e2e", - backgroundPrimaryAlt: "#2b2b2b", - backgroundSecondary: "#282828", - backgroundSecondaryAlt: "#212121", + backgroundPrimaryAlt: "#2a2a2a", + backgroundSecondary: "#232323", + backgroundSecondaryAlt: "#1e1e1e", backgroundTertiary: "#171717", text: "#e9e2e1", textSecondary: "#bdbdbd", diff --git a/src/pages/LoginPage.tsx b/src/pages/LoginPage.tsx index 41fd4c6..a56c992 100644 --- a/src/pages/LoginPage.tsx +++ b/src/pages/LoginPage.tsx @@ -22,7 +22,7 @@ export const Wrapper = styled(Container)` justify-content: center; align-items: center; height: 100vh; - background-color: var(--background-secondary); + background-color: var(--background-tertiary); `; export const AuthBox = styled(Container)` diff --git a/src/pages/RegistrationPage.tsx b/src/pages/RegistrationPage.tsx index 66dc138..33f3735 100644 --- a/src/pages/RegistrationPage.tsx +++ b/src/pages/RegistrationPage.tsx @@ -21,7 +21,7 @@ const Wrapper = styled(Container)` justify-content: center; align-items: center; height: 100vh; - background-color: var(--background-secondary); + background-color: var(--background-tertiary); `; const AuthBox = styled(Container)`