mirror of
https://github.com/taigrr/simplecolorpalettes.git
synced 2026-04-02 04:59:08 -07:00
Add vim themes
This commit is contained in:
29
palettes/vim/deus/deus.go
Normal file
29
palettes/vim/deus/deus.go
Normal file
@@ -0,0 +1,29 @@
|
||||
package deus
|
||||
|
||||
import (
|
||||
"sort"
|
||||
"sync"
|
||||
|
||||
"github.com/taigrr/go-colorpalettes/simplecolor"
|
||||
)
|
||||
|
||||
var (
|
||||
once sync.Once
|
||||
colors = simplecolor.SimplePalette{
|
||||
0x282c34,
|
||||
0x3e4452,
|
||||
0x61afef,
|
||||
0x98c379,
|
||||
0xabb2bf,
|
||||
0xc678dd,
|
||||
0xe06c75,
|
||||
0xe5c07b,
|
||||
}
|
||||
)
|
||||
|
||||
func GetPalette() (sp simplecolor.SimplePalette) {
|
||||
once.Do(func() {
|
||||
sort.Sort(colors)
|
||||
})
|
||||
return colors
|
||||
}
|
||||
Reference in New Issue
Block a user