Counteract zoom-level changes in custom titlebar

This commit is contained in:
Fedor Indutny
2022-06-20 11:26:31 -07:00
committed by GitHub
parent dacbee711f
commit 9407654262
12 changed files with 123 additions and 34 deletions

View File

@@ -624,8 +624,10 @@ async function getTitleBarOverlay(): Promise<TitleBarOverlayOptions | false> {
color = '#e8e8e8';
symbolColor = '#1b1b1b';
} else if (theme === 'dark') {
color = '#24292e';
symbolColor = '#fff';
// $color-gray-80
color = '#2e2e2e';
// $color-gray-05
symbolColor = '#e9e9e9';
} else {
throw missingCaseError(theme);
}