diff --git a/tabby-terminal/src/components/colorSchemeSettingsTab.component.ts b/tabby-terminal/src/components/colorSchemeSettingsTab.component.ts index 71e0aa40..ca3b6684 100644 --- a/tabby-terminal/src/components/colorSchemeSettingsTab.component.ts +++ b/tabby-terminal/src/components/colorSchemeSettingsTab.component.ts @@ -12,6 +12,11 @@ export class ColorSchemeSettingsTabComponent { platform: PlatformService, public config: ConfigService, ) { - this.defaultTab = platform.getTheme() + const mode = this.config.store.appearance.colorSchemeMode + if (mode === 'dark' || mode === 'light') { + this.defaultTab = mode + } else { + this.defaultTab = platform.getTheme() + } } }