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

// Plugin wintergreen provides a calm, bluish green theme.
package main
import "tomo"
import "tomo/plugins/wintergreen/wintergreen"
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 { }
}