mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 22:21:22 -07:00
Remove foreground for themes other than shades of purple and holiday. (#14606)
Co-authored-by: Miguel Solorio <miguelsolorio@google.com>
This commit is contained in:
@@ -10,7 +10,7 @@ import { lightSemanticColors } from './semantic-tokens.js';
|
||||
const ansiLightColors: ColorsTheme = {
|
||||
type: 'light',
|
||||
Background: 'white',
|
||||
Foreground: '#444',
|
||||
Foreground: '',
|
||||
LightBlue: 'blue',
|
||||
AccentBlue: 'blue',
|
||||
AccentPurple: 'purple',
|
||||
|
||||
@@ -10,7 +10,7 @@ import { darkSemanticColors } from './semantic-tokens.js';
|
||||
const ansiColors: ColorsTheme = {
|
||||
type: 'dark',
|
||||
Background: 'black',
|
||||
Foreground: 'white',
|
||||
Foreground: '',
|
||||
LightBlue: 'bluebright',
|
||||
AccentBlue: 'blue',
|
||||
AccentPurple: 'magenta',
|
||||
|
||||
@@ -83,7 +83,7 @@ export interface CustomTheme {
|
||||
export const lightTheme: ColorsTheme = {
|
||||
type: 'light',
|
||||
Background: '#FAFAFA',
|
||||
Foreground: '#383A42',
|
||||
Foreground: '',
|
||||
LightBlue: '#89BDCD',
|
||||
AccentBlue: '#3B82F6',
|
||||
AccentPurple: '#8B5CF6',
|
||||
@@ -102,7 +102,7 @@ export const lightTheme: ColorsTheme = {
|
||||
export const darkTheme: ColorsTheme = {
|
||||
type: 'dark',
|
||||
Background: '#1E1E2E',
|
||||
Foreground: '#CDD6F4',
|
||||
Foreground: '',
|
||||
LightBlue: '#ADD8E6',
|
||||
AccentBlue: '#89B4FA',
|
||||
AccentPurple: '#CBA6F7',
|
||||
@@ -121,7 +121,7 @@ export const darkTheme: ColorsTheme = {
|
||||
export const ansiTheme: ColorsTheme = {
|
||||
type: 'ansi',
|
||||
Background: 'black',
|
||||
Foreground: 'white',
|
||||
Foreground: '',
|
||||
LightBlue: 'blue',
|
||||
AccentBlue: 'blue',
|
||||
AccentPurple: 'magenta',
|
||||
|
||||
Reference in New Issue
Block a user