gotop/colorschemes/solarized.go

24 lines
280 B
Go
Raw Normal View History

2018-02-21 18:24:36 +08:00
package colorschemes
2018-02-22 09:49:47 +08:00
var Solarized = Colorscheme{
2018-02-22 03:16:06 +08:00
Fg: 250,
2018-02-21 18:24:36 +08:00
Bg: -1,
2018-02-22 03:16:06 +08:00
BorderLabel: 250,
BorderLine: 37,
2018-02-21 18:24:36 +08:00
2018-02-28 05:25:08 +08:00
CPULines: []int{61, 33, 37, 64, 125, 160, 166, 136},
2018-02-21 18:24:36 +08:00
2018-02-22 03:16:06 +08:00
MainMem: 125,
SwapMem: 166,
2018-02-21 18:24:36 +08:00
2018-02-22 03:16:06 +08:00
ProcCursor: 136,
2018-02-21 18:24:36 +08:00
2018-02-22 03:16:06 +08:00
Sparkline: 33,
2018-02-21 18:24:36 +08:00
2018-02-22 03:16:06 +08:00
DiskBar: 245,
2018-02-21 18:24:36 +08:00
2018-02-22 03:16:06 +08:00
TempLow: 64,
TempHigh: 160,
2018-02-21 18:24:36 +08:00
}