2018-04-10 13:00:27 +08:00
|
|
|
package colorschemes
|
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
func init() {
|
2020-02-21 03:05:28 +08:00
|
|
|
register("default-dark", Colorscheme{
|
2020-02-18 01:40:16 +08:00
|
|
|
Fg: 235,
|
|
|
|
Bg: -1,
|
2018-04-10 13:00:27 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
BorderLabel: 235,
|
|
|
|
BorderLine: 6,
|
2018-04-10 13:00:27 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
CPULines: []int{4, 3, 2, 1, 5, 6, 7, 8},
|
2018-04-10 13:00:27 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
BattLines: []int{4, 3, 2, 1, 5, 6, 7, 8},
|
2018-12-27 12:06:55 +08:00
|
|
|
|
2020-02-29 00:03:41 +08:00
|
|
|
MemLines: []int{5, 3, 4, 2, 1, 6, 7, 8, 11},
|
2018-04-10 13:00:27 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
ProcCursor: 33,
|
2018-04-10 13:00:27 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
Sparkline: 4,
|
2018-04-10 13:00:27 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
DiskBar: 252,
|
2018-04-10 13:00:27 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
TempLow: 2,
|
|
|
|
TempHigh: 1,
|
|
|
|
})
|
2018-04-10 13:00:27 +08:00
|
|
|
}
|