summaryrefslogtreecommitdiffstats
path: root/colorschemes/vice.go
diff options
context:
space:
mode:
Diffstat (limited to 'colorschemes/vice.go')
-rw-r--r--colorschemes/vice.go30
1 files changed, 16 insertions, 14 deletions
diff --git a/colorschemes/vice.go b/colorschemes/vice.go
index 23fa02a..8bd2545 100644
--- a/colorschemes/vice.go
+++ b/colorschemes/vice.go
@@ -1,25 +1,27 @@
package colorschemes
-var Vice = Colorscheme{
- Fg: 231,
- Bg: -1,
+func init() {
+ register("vice", Colorscheme{
+ Fg: 231,
+ Bg: -1,
- BorderLabel: 123,
- BorderLine: 102,
+ BorderLabel: 123,
+ BorderLine: 102,
- CPULines: []int{212, 218, 123, 159, 229, 158, 183, 146},
+ CPULines: []int{212, 218, 123, 159, 229, 158, 183, 146},
- BattLines: []int{212, 218, 123, 159, 229, 158, 183, 146},
+ BattLines: []int{212, 218, 123, 159, 229, 158, 183, 146},
- MainMem: 201,
- SwapMem: 97,
+ MainMem: 201,
+ SwapMem: 97,
- ProcCursor: 159,
+ ProcCursor: 159,
- Sparkline: 183,
+ Sparkline: 183,
- DiskBar: 158,
+ DiskBar: 158,
- TempLow: 49,
- TempHigh: 197,
+ TempLow: 49,
+ TempHigh: 197,
+ })
}