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

		Sparklines: [2]int{183, 146},

		DiskBar: 158,

		TempLow:  49,
		TempHigh: 197,
	})
}