mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-12 12:54:07 -07:00
Unset foreground in default themes (#9765)
This commit is contained in:
@@ -80,7 +80,7 @@ export interface CustomTheme {
|
|||||||
export const lightTheme: ColorsTheme = {
|
export const lightTheme: ColorsTheme = {
|
||||||
type: 'light',
|
type: 'light',
|
||||||
Background: '#FAFAFA',
|
Background: '#FAFAFA',
|
||||||
Foreground: '#3C3C43',
|
Foreground: '',
|
||||||
LightBlue: '#89BDCD',
|
LightBlue: '#89BDCD',
|
||||||
AccentBlue: '#3B82F6',
|
AccentBlue: '#3B82F6',
|
||||||
AccentPurple: '#8B5CF6',
|
AccentPurple: '#8B5CF6',
|
||||||
@@ -98,7 +98,7 @@ export const lightTheme: ColorsTheme = {
|
|||||||
export const darkTheme: ColorsTheme = {
|
export const darkTheme: ColorsTheme = {
|
||||||
type: 'dark',
|
type: 'dark',
|
||||||
Background: '#1E1E2E',
|
Background: '#1E1E2E',
|
||||||
Foreground: '#CDD6F4',
|
Foreground: '',
|
||||||
LightBlue: '#ADD8E6',
|
LightBlue: '#ADD8E6',
|
||||||
AccentBlue: '#89B4FA',
|
AccentBlue: '#89B4FA',
|
||||||
AccentPurple: '#CBA6F7',
|
AccentPurple: '#CBA6F7',
|
||||||
|
|||||||
@@ -28,5 +28,5 @@ export const getStatusColor = (
|
|||||||
if (value >= thresholds.yellow) {
|
if (value >= thresholds.yellow) {
|
||||||
return theme.status.warning;
|
return theme.status.warning;
|
||||||
}
|
}
|
||||||
return options.defaultColor || theme.status.error;
|
return options.defaultColor ?? theme.status.error;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user