2018-02-21 18:24:36 +08:00
|
|
|
package colorschemes
|
|
|
|
|
2019-11-16 08:23:32 +08:00
|
|
|
// This is a neutral version of the Solarized 256-color palette. The exception
|
|
|
|
// is that the one grey color uses the average of base0 and base00, which are
|
|
|
|
// already middle of the road.
|
2020-02-18 01:40:16 +08:00
|
|
|
func init() {
|
|
|
|
register("solarized", Colorscheme{
|
|
|
|
Fg: -1,
|
|
|
|
Bg: -1,
|
2018-02-21 18:24:36 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
BorderLabel: -1,
|
|
|
|
BorderLine: 37,
|
2018-02-21 18:24:36 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
CPULines: []int{61, 33, 37, 64, 125, 160, 166, 136},
|
2018-02-21 18:24:36 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
BattLines: []int{61, 33, 37, 64, 125, 160, 166, 136},
|
2018-12-27 12:06:55 +08:00
|
|
|
|
2020-02-29 00:03:41 +08:00
|
|
|
MemLines: []int{125, 166, 61, 33, 37, 64, 125, 160, 166, 136},
|
2018-02-21 18:24:36 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
ProcCursor: 136,
|
2018-02-21 18:24:36 +08:00
|
|
|
|
2022-03-26 16:09:34 +08:00
|
|
|
Sparklines: [2]int{33, 136},
|
2018-02-21 18:24:36 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
DiskBar: 243,
|
2018-02-21 18:24:36 +08:00
|
|
|
|
2020-02-18 01:40:16 +08:00
|
|
|
TempLow: 64,
|
|
|
|
TempHigh: 160,
|
|
|
|
})
|
2018-02-21 18:24:36 +08:00
|
|
|
}
|