This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
tomo-old/plugins/wintergreen/main.go

22 lines
382 B
Go
Raw Normal View History

2023-05-02 21:19:43 -06:00
// Plugin wintergreen provides a calm, bluish green theme.
package main
2023-05-03 17:40:30 -06:00
import "tomo"
import "tomo/plugins/wintergreen/wintergreen"
2023-05-02 21:19:43 -06:00
func Expects () tomo.Version {
return tomo.Version { 0, 0, 0 }
}
func Name () string {
return "Wintergreen"
}
func Description () string {
return "A calm, bluish green theme."
}
func NewTheme () (tomo.Theme) {
return wintergreen.Theme { }
}