From 256743baeaf4eb37cfccd9c92210aa12f0e1f9ba Mon Sep 17 00:00:00 2001 From: bluekani <24561326+bluekani@users.noreply.github.com> Date: Sun, 5 Jul 2026 06:47:54 +0900 Subject: [PATCH] fix: open color scheme tab matching current colorSchemeMode setting --- .../src/components/colorSchemeSettingsTab.component.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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() + } } }