From b8e232cd9468d94ffeb296b4ba83ed0409101e05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ey=C3=BE=C3=B3r=20Magn=C3=BAsson?= Date: Tue, 21 Nov 2023 10:56:55 -0600 Subject: [PATCH] improvement(logger): use 'white' as primary color (#5465) Before this commit, our primary log color was chalk.grey and people generally agree that it's too vague. This commit changes the primary log color we've been using since we first released Garden to chalk.white for better accessibility and more fun. In general we can make this configurable. But I figured I'd just bite the bullet. See also discussion in: https://github.com/garden-io/garden/pull/5464 --- core/src/logger/styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/logger/styles.ts b/core/src/logger/styles.ts index 11b6420b47..7b50c71407 100644 --- a/core/src/logger/styles.ts +++ b/core/src/logger/styles.ts @@ -12,7 +12,7 @@ import chalk from "chalk" * A map of all the colors we use to render text in the terminal. */ const theme = { - primary: chalk.grey, + primary: chalk.white, secondary: chalk.grey, accent: chalk.white, highlight: chalk.cyan,