summaryrefslogtreecommitdiffstats
path: root/colorschemes/solarized.go
blob: 59683101a9a65977e2872673e7ee3d8af6ffa3b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package colorschemes

// 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.
var Solarized = Colorscheme{
	Fg: -1,
	Bg: -1,

	BorderLabel: -1,
	BorderLine:  37,

	CPULines: []int{61, 33, 37, 64, 125, 160, 166, 136},

	BattLines: []int{61, 33, 37, 64, 125, 160, 166, 136},

	MainMem: 125,
	SwapMem: 166,

	ProcCursor: 136,

	Sparkline: 33,

	DiskBar: 243,

	TempLow:  64,
	TempHigh: 160,
}