diff --git a/pkg/commands/container.go b/pkg/commands/container.go index 18e88c66..5b42a5df 100644 --- a/pkg/commands/container.go +++ b/pkg/commands/container.go @@ -294,7 +294,7 @@ func (c *Container) GetColor() color.Attribute { switch c.Container.State { case "exited": if c.Details.State.ExitCode == 0 { - return color.FgBlue + return color.FgYellow } return color.FgRed case "created": diff --git a/pkg/commands/image.go b/pkg/commands/image.go index 707fc12b..c19f7ed1 100644 --- a/pkg/commands/image.go +++ b/pkg/commands/image.go @@ -57,7 +57,7 @@ func (l *Layer) GetDisplayStrings(isFocused bool) []string { } idColor := color.FgWhite if id == "" { - idColor = color.FgBlack + idColor = color.FgBlue } dockerFileCommandPrefix := "/bin/sh -c #(nop) " @@ -73,7 +73,7 @@ func (l *Layer) GetDisplayStrings(isFocused bool) []string { size := utils.FormatBinaryBytes(int(l.Size)) sizeColor := color.FgWhite if size == "0B" { - sizeColor = color.FgBlack + sizeColor = color.FgBlue } return []string{ diff --git a/pkg/commands/service.go b/pkg/commands/service.go index 51ca79cd..245e8a7c 100644 --- a/pkg/commands/service.go +++ b/pkg/commands/service.go @@ -23,7 +23,7 @@ type Service struct { func (s *Service) GetDisplayStrings(isFocused bool) []string { if s.Container == nil { - return []string{utils.ColoredString("none", color.FgBlack), s.Name, ""} + return []string{utils.ColoredString("none", color.FgBlue), s.Name, ""} } cont := s.Container