summaryrefslogtreecommitdiffstats
path: root/colorschemes/vice.go
blob: 8bd2545b4251cf8330a16044b66e2b075eff2869 (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

func init() {
	register("vice", Colorscheme{
		Fg: 231,
		Bg: -1,

		BorderLabel: 123,
		BorderLine:  102,

		CPULines: []int{212, 218, 123, 159, 229, 158, 183, 146},

		BattLines: []int{212, 218, 123, 159, 229, 158, 183, 146},

		MainMem: 201,
		SwapMem: 97,

		ProcCursor: 159,

		Sparkline: 183,

		DiskBar: 158,

		TempLow:  49,
		TempHigh: 197,
	})
}