summaryrefslogtreecommitdiffstats
path: root/colorschemes/solarized16_light.go
blob: 0fae39703e068ad6a04081e156392e1a9b505895 (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
29
package colorschemes

// This scheme assumes the terminal already uses Solarized. Only DiskBar is
// different between dark/light.
func init() {
	register("solarized16-light", 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,
	})
}