xmtop/colorschemes/default_dark.go

28 lines
343 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},
MainMem: 5,
SwapMem: 3,
2018-04-10 13:00:27 +08:00
ProcCursor: 33,
2018-04-10 13:00:27 +08:00
Sparkline: 4,
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
}