summaryrefslogtreecommitdiffstats
path: root/colorschemes/monokai.go
diff options
context:
space:
mode:
Diffstat (limited to 'colorschemes/monokai.go')
-rw-r--r--colorschemes/monokai.go30
1 files changed, 16 insertions, 14 deletions
diff --git a/colorschemes/monokai.go b/colorschemes/monokai.go
index 445f054..cd0471c 100644
--- a/colorschemes/monokai.go
+++ b/colorschemes/monokai.go
@@ -1,25 +1,27 @@
package colorschemes
-var Monokai = Colorscheme{
- Fg: 249,
- Bg: -1,
+func init() {
+ register("monokai", Colorscheme{
+ Fg: 249,
+ Bg: -1,
- BorderLabel: 249,
- BorderLine: 239,
+ BorderLabel: 249,
+ BorderLine: 239,
- CPULines: []int{81, 70, 208, 197, 249, 141, 221, 186},
+ CPULines: []int{81, 70, 208, 197, 249, 141, 221, 186},
- BattLines: []int{81, 70, 208, 197, 249, 141, 221, 186},
+ BattLines: []int{81, 70, 208, 197, 249, 141, 221, 186},
- MainMem: 208,
- SwapMem: 186,
+ MainMem: 208,
+ SwapMem: 186,
- ProcCursor: 197,
+ ProcCursor: 197,
- Sparkline: 81,
+ Sparkline: 81,
- DiskBar: 102,
+ DiskBar: 102,
- TempLow: 70,
- TempHigh: 208,
+ TempLow: 70,
+ TempHigh: 208,
+ })
}