diff options
author | Benjamin Chausse <benjamin.chausse@goto.com> | 2025-03-26 10:59:49 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin.chausse@goto.com> | 2025-03-26 10:59:49 -0400 |
commit | 1b79f5fb40f96b8c9b4facfad1570274a67f277e (patch) | |
tree | d9bb92ae84a65800f0a728f9271a14bb35339bc3 /internal | |
parent | 04213e975c46b0d6bfecc8695801b85c3f3dd0ab (diff) |
Auto-style instead of assuming colors for help
Diffstat (limited to 'internal')
-rw-r--r-- | internal/app/app.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/app/app.go b/internal/app/app.go index b17f32a..da19002 100644 --- a/internal/app/app.go +++ b/internal/app/app.go @@ -58,7 +58,7 @@ func Command() *cli.Command { ) helpRaw, _ := docs.ToMarkdown(cmd) - helpCute, _ := glamour.Render(helpRaw, "dark") + helpCute, _ := glamour.Render(helpRaw, "auto") w.Write([]byte(helpCute)) } |