summaryrefslogtreecommitdiffstats
path: root/colorschemes/solarized16-dark.go
blob: f8cdab771e9ce024077c2568656a304208b9154c (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 Solarized16Dark = 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: 12, // base0

	TempLow:  2,
	TempHigh: 1,
}