2019-11-16 08:23:32 +08:00
|
|
|
package colorschemes
|
|
|
|
|
|
|
|
// This scheme assumes the terminal already uses Solarized. Only DiskBar is
|
|
|
|
// different between dark/light.
|
2020-02-18 01:40:16 +08:00
|
|
|
func init() {
|
2020-02-21 03:05:28 +08:00
|
|
|
register("solarized16-light", Colorscheme{
|
2020-02-18 01:40:16 +08:00
|
|
|
Fg: -1,
|
|
|
|
Bg: -1,
|
2019-11-16 08:23:32 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
BorderLabel: -1,
|
|
|
|
BorderLine: 6,
|
2019-11-16 08:23:32 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
CPULines: []int{13, 4, 6, 2, 5, 1, 9, 3},
|
2019-11-16 08:23:32 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
BattLines: []int{13, 4, 6, 2, 5, 1, 9, 3},
|
2019-11-16 08:23:32 +08:00
|
|
|
|
2020-02-29 00:03:41 +08:00
|
|
|
MemLines: []int{5, 9, 13, 4, 6, 2, 1, 3},
|
2019-11-16 08:23:32 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
ProcCursor: 4,
|
2019-11-16 08:23:32 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
Sparkline: 4,
|
2019-11-16 08:23:32 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
DiskBar: 11, // base00
|
2019-11-16 08:23:32 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
TempLow: 2,
|
|
|
|
TempHigh: 1,
|
|
|
|
})
|
2019-11-16 08:23:32 +08:00
|
|
|
}
|