From 4dc98b3c7e8bf7e4202e95dbcbfae124ad0654e1 Mon Sep 17 00:00:00 2001 From: Jacob Richman Date: Thu, 24 Apr 2025 14:19:35 -0700 Subject: [PATCH] Switch Ansi theme to use regular colors to improve readability. (#154) --- packages/cli/src/ui/themes/theme.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/cli/src/ui/themes/theme.ts b/packages/cli/src/ui/themes/theme.ts index 70d6fd51..76f692c6 100644 --- a/packages/cli/src/ui/themes/theme.ts +++ b/packages/cli/src/ui/themes/theme.ts @@ -54,11 +54,11 @@ export const ansiTheme: ColorsTheme = { Background: 'black', Foreground: 'white', LightBlue: 'blue', - AccentBlue: 'bluebright', - AccentPurple: 'magentabright', - AccentCyan: 'cyanbright', - AccentGreen: 'greenbright', - AccentYellow: 'yellowbright', + AccentBlue: 'blue', + AccentPurple: 'magenta', + AccentCyan: 'cynan', + AccentGreen: 'green', + AccentYellow: 'yellow', AccentRed: 'red', SubtleComment: 'gray', Gray: 'gray',