summaryrefslogtreecommitdiffstats
path: root/colorschemes/solarized16_light.go
blob: b4157d9f1c5e7b2df18648b1ae21a2d2519b1c3f (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 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},

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

		ProcCursor: 4,

		Sparkline: 4,

		DiskBar: 11, // base00

		TempLow:  2,
		TempHigh: 1,
	})
}