Add vim themes

This commit is contained in:
2022-09-28 19:50:20 -07:00
parent c6f329915e
commit 2ffe863e18
64 changed files with 2229 additions and 19 deletions

View File

@@ -0,0 +1,37 @@
package badwolf
import (
"sort"
"sync"
"github.com/taigrr/go-colorpalettes/simplecolor"
)
var (
once sync.Once
colors = simplecolor.SimplePalette{
0x000000,
0x005fff,
0x0a9dff,
0x141413,
0x242321,
0x45413b,
0x666462,
0x8cffba,
0xaeee00,
0xb88853,
0xc7915b,
0xf4cf86,
0xfade3e,
0xff2c4b,
0xff9eb8,
0xffa724,
}
)
func GetPalette() (sp simplecolor.SimplePalette) {
once.Do(func() {
sort.Sort(colors)
})
return colors
}