summaryrefslogtreecommitdiffstats
path: root/colorschemes/default_dark.go
diff options
context:
space:
mode:
Diffstat (limited to 'colorschemes/default_dark.go')
-rw-r--r--colorschemes/default_dark.go30
1 files changed, 16 insertions, 14 deletions
diff --git a/colorschemes/default_dark.go b/colorschemes/default_dark.go
index 6070985..7ddb5f7 100644
--- a/colorschemes/default_dark.go
+++ b/colorschemes/default_dark.go
@@ -1,25 +1,27 @@
package colorschemes
-var DefaultDark = Colorscheme{
- Fg: 235,
- Bg: -1,
+func init() {
+ register("defaultdark", Colorscheme{
+ Fg: 235,
+ Bg: -1,
- BorderLabel: 235,
- BorderLine: 6,
+ BorderLabel: 235,
+ 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: 3,
+ MainMem: 5,
+ SwapMem: 3,
- ProcCursor: 33,
+ ProcCursor: 33,
- Sparkline: 4,
+ Sparkline: 4,
- DiskBar: 252,
+ DiskBar: 252,
- TempLow: 2,
- TempHigh: 1,
+ TempLow: 2,
+ TempHigh: 1,
+ })
}