xmtop/colorschemes/default_dark.go

27 lines
374 B
Go

package colorschemes
func init() {
register("default-dark", Colorscheme{
Fg: 235,
Bg: -1,
BorderLabel: 235,
BorderLine: 6,
CPULines: []int{4, 3, 2, 1, 5, 6, 7, 8},
BattLines: []int{4, 3, 2, 1, 5, 6, 7, 8},
MemLines: []int{5, 3, 4, 2, 1, 6, 7, 8, 11},
ProcCursor: 33,
Sparklines: [2]int{4, 5},
DiskBar: 252,
TempLow: 2,
TempHigh: 1,
})
}