summaryrefslogtreecommitdiffstats
path: root/colorschemes/default.go
blob: 10e9fcd06cf5d2f234c3f83f092c519f8a9ba731 (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("default", Colorscheme{
		Fg: 7,
		Bg: -1,

		BorderLabel: 7,
		BorderLine:  6,

		CPULines: []int{4, 3, 2, 1, 5, 6, 7, 8},

		BattLines: []int{4, 3, 2, 1, 5, 6, 7, 8},

		MemLines: []int{5, 11, 4, 3, 2, 1, 6, 7, 8},

		ProcCursor: 4,

		Sparklines: [2]int{4, 5},

		DiskBar: 7,

		TempLow:  2,
		TempHigh: 1,
	})
}