2
0
mirror of https://github.com/rivo/tview.git synced 2024-11-05 06:00:19 +00:00

Added more colors to the text view.

This commit is contained in:
Oliver 2017-12-29 18:50:46 +01:00
parent aa93dab30d
commit 42fa258a5e

View File

@ -13,11 +13,13 @@ import (
// textColors maps color strings which may be embedded in text sent to a // textColors maps color strings which may be embedded in text sent to a
// TextView to their tcell counterparts. // TextView to their tcell counterparts.
var textColors = map[string]tcell.Color{ var textColors = map[string]tcell.Color{
"red": tcell.ColorRed, "red": tcell.ColorRed,
"white": tcell.ColorWhite, "white": tcell.ColorWhite,
"yellow": tcell.ColorYellow, "yellow": tcell.ColorYellow,
"blue": tcell.ColorBlue, "blue": tcell.ColorBlue,
"green": tcell.ColorGreen, "green": tcell.ColorGreen,
"cyan": tcell.ColorDarkCyan,
"magenta": tcell.ColorDarkMagenta,
} }
// Regular expressions commonly used throughout the TextView class. // Regular expressions commonly used throughout the TextView class.
@ -70,7 +72,7 @@ type textViewIndex struct {
// This is a [red]warning[white]! // This is a [red]warning[white]!
// //
// will print the word "warning" in red. The following colors are currently // will print the word "warning" in red. The following colors are currently
// supported: white, yellow, blue, green, red. // supported: white, yellow, blue, green, red, cyan, magenta.
// //
// Regions and Highlights // Regions and Highlights
// //