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

		MemLines: []int{201, 97, 212, 218, 123, 159, 229, 158, 183, 146},

		ProcCursor: 159,

		Sparkline: 183,

		DiskBar: 158,

		TempLow:  49,
		TempHigh: 197,
	})
}