style test: better contrast colors

This commit is contained in:
Garrett D'Amore 2024-03-05 01:00:52 -08:00
parent 2449fd30cc
commit 9970579247
1 changed files with 2 additions and 2 deletions

View File

@ -175,8 +175,8 @@ func main() {
puts(s, style, 2, row, "Blue Underline")
row++
style = plain.Underline(tcell.UnderlineStyleSolid, tcell.ColorHoneydew)
puts(s, style, 2, row, "Honeydew Underline")
style = plain.Underline(tcell.UnderlineStyleSolid, tcell.ColorFireBrick)
puts(s, style, 2, row, "Firebrick Underline")
row++
style = plain.Underline(tcell.UnderlineStyleCurly, tcell.NewRGBColor(0xc5, 0x8a, 0xf9))