Skip to content
This repository has been archived by the owner on Aug 29, 2020. It is now read-only.

Commit

Permalink
Add vice colorscheme based on vim-vice
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Lambiris committed Feb 21, 2019
1 parent 0ed7e58 commit aa56f2b
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
25 changes: 25 additions & 0 deletions colorschemes/vice.go
Original file line number Diff line number Diff line change
@@ -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,
}
3 changes: 3 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ Colorschemes:
default-dark (for white background)
solarized
monokai
vice
`

args, err := docopt.ParseArgs(usage, os.Args[1:], version)
Expand Down Expand Up @@ -126,6 +127,8 @@ func handleColorscheme(cs string) error {
colorscheme = colorschemes.Solarized
case "monokai":
colorscheme = colorschemes.Monokai
case "vice":
colorscheme = colorschemes.Vice
case "default-dark":
colorscheme = colorschemes.DefaultDark
default:
Expand Down

0 comments on commit aa56f2b

Please sign in to comment.