summaryrefslogtreecommitdiffstats
path: root/colorschemes
diff options
context:
space:
mode:
authorTony Lambiris <tony@criticalstack.com>2019-02-21 02:51:49 -0500
committerTony Lambiris <tony@criticalstack.com>2019-02-21 02:51:49 -0500
commitaa56f2b2a636d2639059e4dfd2d7e78457d71108 (patch)
treebfc9cca9d68dd230b07d8d473cb3d6f5be96e71f /colorschemes
parent0ed7e58984292c9a2c08717d7c0fcd2f61e232a1 (diff)
Add vice colorscheme based on vim-vice
Diffstat (limited to 'colorschemes')
-rw-r--r--colorschemes/vice.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/colorschemes/vice.go b/colorschemes/vice.go
new file mode 100644
index 0000000..23fa02a
--- /dev/null
+++ b/colorschemes/vice.go
@@ -0,0 +1,25 @@
+package colorschemes
+
+var Vice = Colorscheme{
+ Fg: 231,
+ Bg: -1,
+
+ BorderLabel: 123,
+ BorderLine: 102,
+
+ CPULines: []int{212, 218, 123, 159, 229, 158, 183, 146},
+
+ BattLines: []int{212, 218, 123, 159, 229, 158, 183, 146},
+
+ MainMem: 201,
+ SwapMem: 97,
+
+ ProcCursor: 159,
+
+ Sparkline: 183,
+
+ DiskBar: 158,
+
+ TempLow: 49,
+ TempHigh: 197,
+}