xmtop/termui/theme.go

33 lines
567 B
Go
Raw Normal View History

2018-02-18 23:25:02 -08:00
package termui
var Theme = DefaultTheme
var DefaultTheme = ColorScheme{
Fg: ColorWhite,
Bg: ColorDefault,
LabelFg: ColorWhite,
LabelBg: ColorDefault,
BorderFg: ColorCyan,
BorderBg: ColorDefault,
SparkLine: ColorBlue,
LineGraph: ColorDefault,
TableCursor: ColorBlue,
}
// A ColorScheme represents the current look-and-feel of the dashboard.
type ColorScheme struct {
Fg Attribute
Bg Attribute
LabelFg Attribute
LabelBg Attribute
BorderFg Attribute
BorderBg Attribute
SparkLine Attribute
LineGraph Attribute
TableCursor Attribute
}