Files
barnard/uiterm/attributes.go
Tim Cooper 4b86035511 move barnard main package to package root
There's only a single executable, so this makes things cleaner
2018-05-08 18:00:30 -03:00

26 lines
312 B
Go

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
)