aluminum/aluminum/plugin.go

18 lines
334 B
Go

// Plugin sapphire provides the Aluminum theme as a plugin.
package main
import "git.tebibyte.media/tomo/aluminum"
import "git.tebibyte.media/tomo/tomo/theme"
func init () {
theme.SetTheme(new(aluminum.Theme))
}
func Name () string {
return "Aluminum"
}
func Description () string {
return "A shiny blue and metallic theme."
}