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

		MainMem: 208,
		SwapMem: 186,

		ProcCursor: 197,

		Sparkline: 81,

		DiskBar: 102,

		TempLow:  70,
		TempHigh: 208,
	})
}