Skip to content

Commit

Permalink
improvement(logger): use 'white' as primary color (#5465)
Browse files Browse the repository at this point in the history
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: #5464
  • Loading branch information
eysi09 authored Nov 21, 2023
1 parent 7d5557f commit b8e232c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/logger/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit b8e232c

Please sign in to comment.