xmtop/colorschemes/default.go

27 lines
350 B
Go
Raw Normal View History

2018-02-21 15:56:37 +08:00
package colorschemes
func init() {
register("default", Colorscheme{
Fg: 7,
Bg: -1,
2018-02-21 15:56:37 +08:00
BorderLabel: 7,
BorderLine: 6,
2018-02-21 18:24:36 +08:00
CPULines: []int{4, 3, 2, 1, 5, 6, 7, 8},
2018-02-21 18:24:36 +08:00
BattLines: []int{4, 3, 2, 1, 5, 6, 7, 8},
2020-02-29 00:03:41 +08:00
MemLines: []int{5, 11, 4, 3, 2, 1, 6, 7, 8},
2018-02-21 18:24:36 +08:00
ProcCursor: 4,
2018-02-21 18:24:36 +08:00
Sparkline: 4,
2018-02-21 18:24:36 +08:00
DiskBar: 7,
2018-02-21 18:24:36 +08:00
TempLow: 2,
TempHigh: 1,
})
2018-02-21 15:56:37 +08:00
}