1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-22 10:22:30 +01:00

fix dark theme colors

This commit is contained in:
Puyodead1 2023-05-17 08:49:06 -04:00
parent 47a3440d4f
commit 947aad7130
No known key found for this signature in database
GPG Key ID: A4FA4FEC0DD353FC
3 changed files with 5 additions and 5 deletions

View File

@ -83,9 +83,9 @@ export const ThemePresets: Record<string, Theme> = {
},
dark: {
backgroundPrimary: "#2e2e2e",
backgroundPrimaryAlt: "#2b2b2b",
backgroundSecondary: "#282828",
backgroundSecondaryAlt: "#212121",
backgroundPrimaryAlt: "#2a2a2a",
backgroundSecondary: "#232323",
backgroundSecondaryAlt: "#1e1e1e",
backgroundTertiary: "#171717",
text: "#e9e2e1",
textSecondary: "#bdbdbd",

View File

@ -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)`

View File

@ -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)`