27 lines
415 B
Go
Raw Normal View History

2019-02-21 02:51:49 -05:00
package colorschemes
func init() {
register("vice", Colorscheme{
Fg: 231,
Bg: -1,
2019-02-21 02:51:49 -05:00
BorderLabel: 123,
BorderLine: 102,
2019-02-21 02:51:49 -05:00
CPULines: []int{212, 218, 123, 159, 229, 158, 183, 146},
2019-02-21 02:51:49 -05:00
BattLines: []int{212, 218, 123, 159, 229, 158, 183, 146},
2019-02-21 02:51:49 -05:00
2020-02-28 10:03:41 -06:00
MemLines: []int{201, 97, 212, 218, 123, 159, 229, 158, 183, 146},
2019-02-21 02:51:49 -05:00
ProcCursor: 159,
2019-02-21 02:51:49 -05:00
Sparkline: 183,
2019-02-21 02:51:49 -05:00
DiskBar: 158,
2019-02-21 02:51:49 -05:00
TempLow: 49,
TempHigh: 197,
})
2019-02-21 02:51:49 -05:00
}