Skip to content

Commit

Permalink
Make the banner bold to be more readable
Browse files Browse the repository at this point in the history
  • Loading branch information
mstoykov committed Oct 30, 2024
1 parent c73d106 commit c408b44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func getColor(noColor bool, attributes ...color.Attribute) *color.Color {
}

func getBanner(noColor bool) string {
c := setColor(noColor, color.RGB(0xFF, 0x67, 0x1d))
c := setColor(noColor, color.RGB(0xFF, 0x67, 0x1d).Add(color.Bold))
return c.Sprint(consts.Banner())
}

Expand Down

0 comments on commit c408b44

Please sign in to comment.