summaryrefslogtreecommitdiffstats
path: root/colorschemes/solarized16-light.go
diff options
context:
space:
mode:
Diffstat (limited to 'colorschemes/solarized16-light.go')
-rw-r--r--colorschemes/solarized16-light.go30
1 files changed, 16 insertions, 14 deletions
diff --git a/colorschemes/solarized16-light.go b/colorschemes/solarized16-light.go
index 8426a95..351fe4e 100644
--- a/colorschemes/solarized16-light.go
+++ b/colorschemes/solarized16-light.go
@@ -2,26 +2,28 @@ package colorschemes
// This scheme assumes the terminal already uses Solarized. Only DiskBar is
// different between dark/light.
-var Solarized16Light = Colorscheme{
- Fg: -1,
- Bg: -1,
+func init() {
+ register("solarized16light", Colorscheme{
+ Fg: -1,
+ Bg: -1,
- BorderLabel: -1,
- BorderLine: 6,
+ BorderLabel: -1,
+ BorderLine: 6,
- CPULines: []int{13, 4, 6, 2, 5, 1, 9, 3},
+ CPULines: []int{13, 4, 6, 2, 5, 1, 9, 3},
- BattLines: []int{13, 4, 6, 2, 5, 1, 9, 3},
+ BattLines: []int{13, 4, 6, 2, 5, 1, 9, 3},
- MainMem: 5,
- SwapMem: 9,
+ MainMem: 5,
+ SwapMem: 9,
- ProcCursor: 4,
+ ProcCursor: 4,
- Sparkline: 4,
+ Sparkline: 4,
- DiskBar: 11, // base00
+ DiskBar: 11, // base00
- TempLow: 2,
- TempHigh: 1,
+ TempLow: 2,
+ TempHigh: 1,
+ })
}