2017-06-06 15:59:48 +10:00
|
|
|
package styles
|
|
|
|
|
2017-06-06 21:23:50 +10:00
|
|
|
import "github.com/alecthomas/chroma"
|
2017-06-06 15:59:48 +10:00
|
|
|
|
|
|
|
// Registry of Styles.
|
2017-06-06 21:23:50 +10:00
|
|
|
var Registry = map[string]*chroma.Style{}
|
2017-06-06 15:59:48 +10:00
|
|
|
|
|
|
|
// Fallback style. Reassign to change the default fallback style.
|
|
|
|
var Fallback = SwapOff
|
|
|
|
|
2017-06-06 21:23:50 +10:00
|
|
|
// Register a chroma.Style.
|
|
|
|
func Register(style *chroma.Style) *chroma.Style {
|
2017-06-06 15:59:48 +10:00
|
|
|
Registry[style.Name] = style
|
|
|
|
return style
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get named style, or Fallback.
|
2017-06-06 21:23:50 +10:00
|
|
|
func Get(name string) *chroma.Style {
|
2017-06-06 15:59:48 +10:00
|
|
|
if style, ok := Registry[name]; ok {
|
|
|
|
return style
|
|
|
|
}
|
|
|
|
return Fallback
|
|
|
|
}
|