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

		BorderLabel: 249,
		BorderLine:  239,

		CPULines: []int{81, 70, 208, 197, 249, 141, 221, 186},

		BattLines: []int{81, 70, 208, 197, 249, 141, 221, 186},

		MemLines: []int{208, 186, 81, 70, 208, 197, 249, 141, 221, 186},

		ProcCursor: 197,

		Sparkline: 81,

		DiskBar: 102,

		TempLow:  70,
		TempHigh: 208,
	})
}