nasin/internal/style/fallback/wintergreen.go

20 lines
502 B
Go
Raw Normal View History

2024-06-03 01:04:29 -06:00
package fallbackStyle
import "image/color"
import "git.tebibyte.media/tomo/tomo"
2024-06-11 22:19:12 -06:00
// New returns Wintergreen, the default Tomo style. It is neutral-gray with
// green and turquoise accents.
2024-07-25 15:47:50 -06:00
func New () *tomo.Style {
return &tomo.Style {
Rules: rules,
Colors: map[tomo.Color] color.Color {
tomo.ColorBackground: colorBackground,
tomo.ColorForeground: colorForeground,
tomo.ColorRaised: colorCarved,
tomo.ColorSunken: colorCarved,
tomo.ColorAccent: colorFocus,
},
}
}