summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin.chausse@goto.com>2025-03-26 10:59:49 -0400
committerBenjamin Chausse <benjamin.chausse@goto.com>2025-03-26 10:59:49 -0400
commit1b79f5fb40f96b8c9b4facfad1570274a67f277e (patch)
treed9bb92ae84a65800f0a728f9271a14bb35339bc3 /internal
parent04213e975c46b0d6bfecc8695801b85c3f3dd0ab (diff)
Auto-style instead of assuming colors for help
Diffstat (limited to 'internal')
-rw-r--r--internal/app/app.go2
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))
}