summaryrefslogtreecommitdiffstats
path: root/colorschemes/solarized16-light.go
blob: 8426a950ade09874e49ffa8be6ce8ee32163bc4a (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
package colorschemes

// This scheme assumes the terminal already uses Solarized. Only DiskBar is
// different between dark/light.
var Solarized16Light = Colorscheme{
	Fg: -1,
	Bg: -1,

	BorderLabel: -1,
	BorderLine:  6,

	CPULines: []int{13, 4, 6, 2, 5, 1, 9, 3},

	BattLines: []int{13, 4, 6, 2, 5, 1, 9, 3},

	MainMem: 5,
	SwapMem: 9,

	ProcCursor: 4,

	Sparkline: 4,

	DiskBar: 11, // base00

	TempLow:  2,
	TempHigh: 1,
}