summaryrefslogtreecommitdiffstats
path: root/colorschemes/solarized16_dark.go
diff options
context:
space:
mode:
Diffstat (limited to 'colorschemes/solarized16_dark.go')
-rw-r--r--colorschemes/solarized16_dark.go29
1 files changed, 29 insertions, 0 deletions
diff --git a/colorschemes/solarized16_dark.go b/colorschemes/solarized16_dark.go
new file mode 100644
index 0000000..354991b
--- /dev/null
+++ b/colorschemes/solarized16_dark.go
@@ -0,0 +1,29 @@
+package colorschemes
+
+// This scheme assumes the terminal already uses Solarized. Only DiskBar is
+// different between dark/light.
+func init() {
+ register("solarized16-dark", Colorscheme{
+ Fg: -1,
+ Bg: -1,
+
+ BorderLabel: -1,
+ BorderLine: 6,
+
+ CPULines: []int{13, 4, 6, 2, 5, 1, 9, 3},
+
+ BattLines: []int{13, 4, 6, 2, 5, 1, 9, 3},
+
+ MainMem: 5,
+ SwapMem: 9,
+
+ ProcCursor: 4,
+
+ Sparkline: 4,
+
+ DiskBar: 12, // base0
+
+ TempLow: 2,
+ TempHigh: 1,
+ })
+}