From c415ba53d5f0afb4b8015ae3149db8ac43af23c1 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Thu, 25 Jul 2024 15:49:07 -0400 Subject: [PATCH] fix: show background style help Signed-off-by: Carlos Alexandro Becker --- style/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style/options.go b/style/options.go index 0b250c294..906b551d5 100644 --- a/style/options.go +++ b/style/options.go @@ -15,7 +15,7 @@ type Options struct { type Styles struct { // Colors Foreground string `help:"Foreground Color" default:"${defaultForeground}" group:"Style Flags" env:"FOREGROUND"` - Background string `help:"Background Color" default:"${defaultBackground}" group:"Style Flags" env:"BACKGROUND" hidden:"true"` + Background string `help:"Background Color" default:"${defaultBackground}" group:"Style Flags" env:"BACKGROUND"` // Border Border string `help:"Border Style" enum:"none,hidden,normal,rounded,thick,double" default:"${defaultBorder}" group:"Style Flags" env:"BORDER" hidden:"true"`