diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e129158..75e13fac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/conslogging/color.go b/conslogging/color.go index 7016d72f..01f94b36 100644 --- a/conslogging/color.go +++ b/conslogging/color.go @@ -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)