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