Skip to content

Commit

Permalink
Fix help colours (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
FollowTheProcess authored Sep 22, 2024
1 parent fd01756 commit 3713af3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/colour/colour.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import "os"
// alignment of [text/tabwriter].
const (
CodeReset = "\x1b[000000m" // Reset all attributes
CodeTitle = "\x1b[1;37;4m" // Bold, white & underlined
CodeBold = "\x1b[1;0037m" // Bold & white
CodeTitle = "\x1b[1;39;4m" // Bold, white & underlined
CodeBold = "\x1b[1;0039m" // Bold & white
)

// Title returns the given text in a title style, bold white and underlined.
Expand Down

0 comments on commit 3713af3

Please sign in to comment.