This repository has been archived on 2024-05-03. You can view files and clone it, but cannot push or open issues or pull requests.
wintergreen/wintergreen/plugin.go
2023-08-08 02:07:01 -04:00

18 lines
339 B
Go

// Plugin wintergreen provides the Wintergreen theme as a plugin.
package main
import "git.tebibyte.media/tomo/tomo/theme"
import "git.tebibyte.media/tomo/wintergreen"
func init () {
theme.SetTheme(wintergreen.Theme { })
}
func Name () string {
return "Wintergreen"
}
func Description () string {
return "The default Tomo theme."
}