yoake/internal/servetpl/funcmap/theme.go

11 lines
183 B
Go
Raw Normal View History

2022-11-20 12:05:14 -06:00
package funcmap
import "fmt"
func ThemeColor(key string) (string, error) {
if c, ok := nipponColors[key]; ok {
return c, nil
}
return "", fmt.Errorf("no such color %s", key)
}