From de34be098a2599116f5c5c545e1084b848900678 Mon Sep 17 00:00:00 2001 From: Lavender Date: Wed, 23 Apr 2025 12:05:12 +1000 Subject: [PATCH] bugfix/MIG-6656 Fix light mode and dark mode --- src/styles/theme-dark.ts | 2 +- src/styles/theme-light.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/theme-dark.ts b/src/styles/theme-dark.ts index 546ac12..04a63b5 100644 --- a/src/styles/theme-dark.ts +++ b/src/styles/theme-dark.ts @@ -24,7 +24,7 @@ export const DARK_THEME: Theme = { backgroundHover: palette.gray.dark3, color: palette.gray.light2, border: palette.gray.dark1, - icon: palette.gray.dark1, + icon: palette.gray.light1, relationalAccent: purple30, mongoDBAccent: palette.green.base, disabledAccent: palette.gray.base, diff --git a/src/styles/theme-light.ts b/src/styles/theme-light.ts index 5eafaf0..472c30d 100644 --- a/src/styles/theme-light.ts +++ b/src/styles/theme-light.ts @@ -22,7 +22,7 @@ export const LIGHT_THEME: Theme = { backgroundHover: palette.gray.light3, color: palette.black, border: palette.gray.base, - icon: palette.gray.light1, + icon: palette.gray.dark1, relationalAccent: palette.purple.base, mongoDBAccent: palette.green.dark1, disabledAccent: palette.gray.light1,