xmtop/colorschemes/vice.go
Sean E. Russell 231b0d03fe Extensions.
2020-02-28 10:06:05 -06:00

27 lines
415 B
Go

package colorschemes
func init() {
register("vice", Colorscheme{
Fg: 231,
Bg: -1,
BorderLabel: 123,
BorderLine: 102,
CPULines: []int{212, 218, 123, 159, 229, 158, 183, 146},
BattLines: []int{212, 218, 123, 159, 229, 158, 183, 146},
MemLines: []int{201, 97, 212, 218, 123, 159, 229, 158, 183, 146},
ProcCursor: 159,
Sparkline: 183,
DiskBar: 158,
TempLow: 49,
TempHigh: 197,
})
}