xmtop/colorschemes/default_dark.go

27 lines
362 B
Go
Raw Normal View History

2018-04-09 22:00:27 -07:00
package colorschemes
func init() {
register("default-dark", Colorscheme{
Fg: 235,
Bg: -1,
2018-04-09 22:00:27 -07:00
BorderLabel: 235,
BorderLine: 6,
2018-04-09 22:00:27 -07:00
CPULines: []int{4, 3, 2, 1, 5, 6, 7, 8},
2018-04-09 22:00:27 -07:00
BattLines: []int{4, 3, 2, 1, 5, 6, 7, 8},
2020-02-28 10:03:41 -06:00
MemLines: []int{5, 3, 4, 2, 1, 6, 7, 8, 11},
2018-04-09 22:00:27 -07:00
ProcCursor: 33,
2018-04-09 22:00:27 -07:00
Sparkline: 4,
2018-04-09 22:00:27 -07:00
DiskBar: 252,
2018-04-09 22:00:27 -07:00
TempLow: 2,
TempHigh: 1,
})
2018-04-09 22:00:27 -07:00
}