2018-02-21 19:54:25 -08:00
|
|
|
package colorschemes
|
|
|
|
|
2020-02-17 11:40:16 -06:00
|
|
|
func init() {
|
|
|
|
register("monokai", Colorscheme{
|
|
|
|
Fg: 249,
|
|
|
|
Bg: -1,
|
2018-02-21 19:54:25 -08:00
|
|
|
|
2020-02-17 11:40:16 -06:00
|
|
|
BorderLabel: 249,
|
|
|
|
BorderLine: 239,
|
2018-02-21 19:54:25 -08:00
|
|
|
|
2020-02-17 11:40:16 -06:00
|
|
|
CPULines: []int{81, 70, 208, 197, 249, 141, 221, 186},
|
2018-02-21 19:54:25 -08:00
|
|
|
|
2020-02-17 11:40:16 -06:00
|
|
|
BattLines: []int{81, 70, 208, 197, 249, 141, 221, 186},
|
2018-12-26 22:06:55 -06:00
|
|
|
|
2020-02-28 10:03:41 -06:00
|
|
|
MemLines: []int{208, 186, 81, 70, 208, 197, 249, 141, 221, 186},
|
2018-02-21 19:54:25 -08:00
|
|
|
|
2020-02-17 11:40:16 -06:00
|
|
|
ProcCursor: 197,
|
2018-02-21 19:54:25 -08:00
|
|
|
|
2020-02-17 11:40:16 -06:00
|
|
|
Sparkline: 81,
|
2018-02-21 19:54:25 -08:00
|
|
|
|
2020-02-17 11:40:16 -06:00
|
|
|
DiskBar: 102,
|
2018-02-21 19:54:25 -08:00
|
|
|
|
2020-02-17 11:40:16 -06:00
|
|
|
TempLow: 70,
|
|
|
|
TempHigh: 208,
|
|
|
|
})
|
2018-02-21 19:54:25 -08:00
|
|
|
}
|