From ee2cb463d391bbea49a45725edf0c8c0958fe6e9 Mon Sep 17 00:00:00 2001 From: William Grant Date: Thu, 20 Oct 2022 15:23:05 +1100 Subject: [PATCH] fix: conversation tab hover color for classic dark was incorrect --- ts/themes/classicDark.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/themes/classicDark.ts b/ts/themes/classicDark.ts index f04171d44..d4539ce9b 100644 --- a/ts/themes/classicDark.ts +++ b/ts/themes/classicDark.ts @@ -64,7 +64,7 @@ export const classicDark: ThemeColorVariables = { '--button-icon-stroke-selected-color': 'var(--text-primary-color)', '--conversation-tab-background-color': 'var(--background-primary-color)', - '--conversation-tab-background-hover-color': THEMES.CLASSIC_DARK.COLOR2, + '--conversation-tab-background-hover-color': THEMES.CLASSIC_DARK.COLOR3, '--conversation-tab-background-selected-color': THEMES.CLASSIC_DARK.COLOR3, '--conversation-tab-background-unread-color': THEMES.CLASSIC_DARK.COLOR2, '--conversation-tab-text-color': 'var(--text-secondary-color)',