summaryrefslogtreecommitdiffstats
path: root/colorschemes/default.go
diff options
context:
space:
mode:
Diffstat (limited to 'colorschemes/default.go')
-rw-r--r--colorschemes/default.go30
1 files changed, 16 insertions, 14 deletions
diff --git a/colorschemes/default.go b/colorschemes/default.go
index de65c22..dc6c6b2 100644
--- a/colorschemes/default.go
+++ b/colorschemes/default.go
@@ -1,25 +1,27 @@
package colorschemes
-var Default = Colorscheme{
- Fg: 7,
- Bg: -1,
+func init() {
+ register("default", Colorscheme{
+ Fg: 7,
+ Bg: -1,
- BorderLabel: 7,
- BorderLine: 6,
+ BorderLabel: 7,
+ BorderLine: 6,
- CPULines: []int{4, 3, 2, 1, 5, 6, 7, 8},
+ CPULines: []int{4, 3, 2, 1, 5, 6, 7, 8},
- BattLines: []int{4, 3, 2, 1, 5, 6, 7, 8},
+ BattLines: []int{4, 3, 2, 1, 5, 6, 7, 8},
- MainMem: 5,
- SwapMem: 11,
+ MainMem: 5,
+ SwapMem: 11,
- ProcCursor: 4,
+ ProcCursor: 4,
- Sparkline: 4,
+ Sparkline: 4,
- DiskBar: 7,
+ DiskBar: 7,
- TempLow: 2,
- TempHigh: 1,
+ TempLow: 2,
+ TempHigh: 1,
+ })
}