From 172ec8f92a130abdf48aeab758cbee3f1e497dc2 Mon Sep 17 00:00:00 2001 From: Keith Guerin Date: Tue, 10 Feb 2026 22:33:38 -0800 Subject: [PATCH] ui: change default border color to 30% of primary color --- packages/cli/src/ui/constants.ts | 2 +- packages/cli/src/ui/themes/theme.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/cli/src/ui/constants.ts b/packages/cli/src/ui/constants.ts index 197711f82f..2ac1c0bb16 100644 --- a/packages/cli/src/ui/constants.ts +++ b/packages/cli/src/ui/constants.ts @@ -36,7 +36,7 @@ export const SHELL_SILENT_WORKING_TITLE_DELAY_MS = 120000; export const DEFAULT_BACKGROUND_OPACITY = 0.16; export const DEFAULT_INPUT_BACKGROUND_OPACITY = 0.24; -export const DEFAULT_BORDER_OPACITY = 0.2; +export const DEFAULT_BORDER_OPACITY = 0.3; export const KEYBOARD_SHORTCUTS_URL = 'https://geminicli.com/docs/cli/keyboard-shortcuts/'; diff --git a/packages/cli/src/ui/themes/theme.ts b/packages/cli/src/ui/themes/theme.ts index 2e39b1b6c7..a60d5d196c 100644 --- a/packages/cli/src/ui/themes/theme.ts +++ b/packages/cli/src/ui/themes/theme.ts @@ -139,7 +139,7 @@ export class Theme { border: { default: interpolateColor( this.colors.Background, - this.colors.Gray, + this.colors.Foreground, DEFAULT_BORDER_OPACITY, ), focused: this.colors.AccentBlue, @@ -410,7 +410,7 @@ export function createCustomTheme(customTheme: CustomTheme): Theme { customTheme.border?.default ?? interpolateColor( colors.Background, - colors.Gray, + colors.Foreground, DEFAULT_BORDER_OPACITY, ), focused: customTheme.border?.focused ?? colors.AccentBlue,