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

31
palettes/vim/angr/angr.go Normal file
View File

@@ -0,0 +1,31 @@
package angr
import (
"sort"
"sync"
"github.com/taigrr/go-colorpalettes/simplecolor"
)
var (
once sync.Once
colors = simplecolor.SimplePalette{
0x005f87,
0x303030,
0x3a3a3a,
0x444444,
0x87afd7,
0xafafd7,
0xb2b2b2,
0xd78787,
0xd7afd7,
0xffaf87,
}
)
func GetPalette() (sp simplecolor.SimplePalette) {
once.Do(func() {
sort.Sort(colors)
})
return colors
}