xmtop/colorschemes/default_dark.go

27 lines
374 B
Go
Raw Normal View History

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