From b7a87190d773636ce49c5542fc9953bf32048c37 Mon Sep 17 00:00:00 2001 From: Luna Wang Date: Mon, 15 Sep 2025 16:23:54 -0700 Subject: [PATCH] Improve theme name color and readability in ThemeDialog (#8356) Co-authored-by: Jacob Richman Co-authored-by: Miguel Solorio Co-authored-by: matt korwel Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Richie Foreman Co-authored-by: shishu314 Co-authored-by: Shi Shu Co-authored-by: Shreya Keshive Co-authored-by: Abhi <43648792+abhipatel12@users.noreply.github.com> Co-authored-by: Tommaso Sciortino Co-authored-by: masiaf Co-authored-by: Sandy Tao Co-authored-by: Jerop Kipruto Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com> Co-authored-by: fuyou Co-authored-by: Rohit Ramkumar Co-authored-by: Hadi Minooei Co-authored-by: gemini-cli-robot Co-authored-by: Arya Gummadi Co-authored-by: Luke Schlangen Co-authored-by: Ayesha Shafique <79274585+Aisha630@users.noreply.github.com> Co-authored-by: Hadi Minooei --- packages/cli/src/ui/themes/ayu.ts | 2 +- packages/cli/src/ui/themes/dracula.ts | 4 ++-- packages/cli/src/ui/themes/github-dark.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/cli/src/ui/themes/ayu.ts b/packages/cli/src/ui/themes/ayu.ts index 1d1fc7d0ee..7a3bde778d 100644 --- a/packages/cli/src/ui/themes/ayu.ts +++ b/packages/cli/src/ui/themes/ayu.ts @@ -9,7 +9,7 @@ import { type ColorsTheme, Theme } from './theme.js'; const ayuDarkColors: ColorsTheme = { type: 'dark', Background: '#0b0e14', - Foreground: '#bfbdb6', + Foreground: '#aeaca6', LightBlue: '#59C2FF', AccentBlue: '#39BAE6', AccentPurple: '#D2A6FF', diff --git a/packages/cli/src/ui/themes/dracula.ts b/packages/cli/src/ui/themes/dracula.ts index e746d8e8ca..07261d5124 100644 --- a/packages/cli/src/ui/themes/dracula.ts +++ b/packages/cli/src/ui/themes/dracula.ts @@ -9,13 +9,13 @@ import { type ColorsTheme, Theme } from './theme.js'; const draculaColors: ColorsTheme = { type: 'dark', Background: '#282a36', - Foreground: '#f8f8f2', + Foreground: '#a3afb7', LightBlue: '#8be9fd', AccentBlue: '#8be9fd', AccentPurple: '#ff79c6', AccentCyan: '#8be9fd', AccentGreen: '#50fa7b', - AccentYellow: '#f1fa8c', + AccentYellow: '#fff783', AccentRed: '#ff5555', DiffAdded: '#11431d', DiffRemoved: '#6e1818', diff --git a/packages/cli/src/ui/themes/github-dark.ts b/packages/cli/src/ui/themes/github-dark.ts index e93c8c6a80..2e7b0a2eb8 100644 --- a/packages/cli/src/ui/themes/github-dark.ts +++ b/packages/cli/src/ui/themes/github-dark.ts @@ -9,7 +9,7 @@ import { type ColorsTheme, Theme } from './theme.js'; const githubDarkColors: ColorsTheme = { type: 'dark', Background: '#24292e', - Foreground: '#d1d5da', + Foreground: '#c0c4c8', LightBlue: '#79B8FF', AccentBlue: '#79B8FF', AccentPurple: '#B392F0',