2018-02-20 23:56:37 -08:00
|
|
|
package colorschemes
|
|
|
|
|
2020-02-17 11:40:16 -06:00
|
|
|
func init() {
|
|
|
|
register("default", Colorscheme{
|
|
|
|
Fg: 7,
|
|
|
|
Bg: -1,
|
2018-02-20 23:56:37 -08:00
|
|
|
|
2020-02-17 11:40:16 -06:00
|
|
|
BorderLabel: 7,
|
|
|
|
BorderLine: 6,
|
2018-02-21 02:24:36 -08:00
|
|
|
|
2020-02-17 11:40:16 -06:00
|
|
|
CPULines: []int{4, 3, 2, 1, 5, 6, 7, 8},
|
2018-02-21 02:24:36 -08:00
|
|
|
|
2020-02-17 11:40:16 -06:00
|
|
|
BattLines: []int{4, 3, 2, 1, 5, 6, 7, 8},
|
2018-12-26 22:06:55 -06:00
|
|
|
|
2020-02-28 10:03:41 -06:00
|
|
|
MemLines: []int{5, 11, 4, 3, 2, 1, 6, 7, 8},
|
2018-02-21 02:24:36 -08:00
|
|
|
|
2020-02-17 11:40:16 -06:00
|
|
|
ProcCursor: 4,
|
2018-02-21 02:24:36 -08:00
|
|
|
|
2020-02-17 11:40:16 -06:00
|
|
|
Sparkline: 4,
|
2018-02-21 02:24:36 -08:00
|
|
|
|
2020-02-17 11:40:16 -06:00
|
|
|
DiskBar: 7,
|
2018-02-21 02:24:36 -08:00
|
|
|
|
2020-02-17 11:40:16 -06:00
|
|
|
TempLow: 2,
|
|
|
|
TempHigh: 1,
|
|
|
|
})
|
2018-02-20 23:56:37 -08:00
|
|
|
}
|