My mirror of the Barnard terminal client for Mumble.
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- package uiterm
-
- /*
- * Source: https://godoc.org/github.com/nsf/termbox-go
- */
-
- type Attribute int
-
- const (
- ColorDefault Attribute = iota
- ColorBlack
- ColorRed
- ColorGreen
- ColorYellow
- ColorBlue
- ColorMagenta
- ColorCyan
- ColorWhite
- )
-
- const (
- AttrBold Attribute = 1 << (iota + 4)
- AttrUnderline
- AttrReverse
- )
|