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

40
palettes/vim/sol/sol.go Normal file
View File

@@ -0,0 +1,40 @@
package sol
import (
"sort"
"sync"
"github.com/taigrr/go-colorpalettes/simplecolor"
)
var (
once sync.Once
colors = simplecolor.SimplePalette{
0x004b9a,
0x007fff,
0x09643f,
0x343434,
0x777777,
0xa0a0a0,
0xa3a3a3,
0xb0b0b0,
0xb3b3b3,
0xc7c7c7,
0xe33900,
0xeeeeee,
0xff2121,
0xff3535,
0xff6003,
0xff6868,
0xffdbc7,
0xffff9a,
0xffffff,
}
)
func GetPalette() (sp simplecolor.SimplePalette) {
once.Do(func() {
sort.Sort(colors)
})
return colors
}