Skip to content

Commit

Permalink
make selection more unambiguous (when no color on terminal)
Browse files Browse the repository at this point in the history
  • Loading branch information
aybabtme committed Oct 25, 2024
1 parent 5019226 commit a7dff6f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cmd/humanlog/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ func fatalf(c *cli.Context, format string, args ...interface{}) {
}

func main() {
huhTheme.Focused.FocusedButton = huhTheme.Focused.FocusedButton.Bold(true).Underline(true)
huhTheme.Focused.BlurredButton = huhTheme.Focused.BlurredButton.Bold(false).Underline(false).Strikethrough(true)
huhTheme.Blurred.FocusedButton = huhTheme.Focused.FocusedButton.Bold(true).Underline(true)
huhTheme.Blurred.BlurredButton = huhTheme.Focused.BlurredButton.Bold(false).Underline(false).Strikethrough(true)
app := newApp()

prefix := rgbterm.FgString(app.Name+"> ", 99, 99, 99)
Expand Down

0 comments on commit a7dff6f

Please sign in to comment.