Skip to content

Commit

Permalink
Change color used to print metadata values (such as ARG values) (#3551)
Browse files Browse the repository at this point in the history
  • Loading branch information
idodod authored Nov 29, 2023
1 parent e4b8bb7 commit afd9a4c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ All notable changes to [Earthly](https://github.com/earthly/earthly) will be doc
### Added
- A warning when a `COPY` destination includes a tilde (~). Related to [#1789](https://github.com/earthly/earthly/issues/1789).

### Changed
- Changed the color used to print metadata values (such as ARGs values) in the build log to Faint Blue.

## v0.7.22 - 2023-11-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion conslogging/color.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "github.com/fatih/color"
var (
noColor = makeNoColor()
cachedColor = makeColor(color.FgGreen)
metadataModeColor = makeColor(color.FgHiWhite, color.BgHiBlack)
metadataModeColor = makeColor(color.FgBlue, color.Faint)
phaseColor = makeColor(color.FgCyan)
disabledPhaseColor = makeColor(color.FgHiBlack)
specialPhaseColor = makeColor(color.FgYellow)
Expand Down

0 comments on commit afd9a4c

Please sign in to comment.