diff --git a/packages/cli/src/ui/themes/theme.ts b/packages/cli/src/ui/themes/theme.ts index df33a59a10..99a7efa6b0 100644 --- a/packages/cli/src/ui/themes/theme.ts +++ b/packages/cli/src/ui/themes/theme.ts @@ -80,7 +80,7 @@ export interface CustomTheme { export const lightTheme: ColorsTheme = { type: 'light', Background: '#FAFAFA', - Foreground: '#3C3C43', + Foreground: '', LightBlue: '#89BDCD', AccentBlue: '#3B82F6', AccentPurple: '#8B5CF6', @@ -98,7 +98,7 @@ export const lightTheme: ColorsTheme = { export const darkTheme: ColorsTheme = { type: 'dark', Background: '#1E1E2E', - Foreground: '#CDD6F4', + Foreground: '', LightBlue: '#ADD8E6', AccentBlue: '#89B4FA', AccentPurple: '#CBA6F7', diff --git a/packages/cli/src/ui/utils/displayUtils.ts b/packages/cli/src/ui/utils/displayUtils.ts index 6f6c9209db..73018fd29f 100644 --- a/packages/cli/src/ui/utils/displayUtils.ts +++ b/packages/cli/src/ui/utils/displayUtils.ts @@ -28,5 +28,5 @@ export const getStatusColor = ( if (value >= thresholds.yellow) { return theme.status.warning; } - return options.defaultColor || theme.status.error; + return options.defaultColor ?? theme.status.error; };