summaryrefslogtreecommitdiffstats
path: root/colorschemes/default_dark.go
blob: 7ddb5f7f676776f03084e8c0de5b35fa1324107e (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("defaultdark", Colorscheme{
		Fg: 235,
		Bg: -1,

		BorderLabel: 235,
		BorderLine:  6,

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

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

		MainMem: 5,
		SwapMem: 3,

		ProcCursor: 33,

		Sparkline: 4,

		DiskBar: 252,

		TempLow:  2,
		TempHigh: 1,
	})
}