xmtop/colorschemes/vice.go

28 lines
378 B
Go
Raw Normal View History

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