This repository has been archived on 2024-06-03. You can view files and clone it, but cannot push or open issues or pull requests.
aluminum/aluminum/plugin.go

18 lines
334 B
Go
Raw Permalink Normal View History

2023-08-12 05:24:44 +00:00
// 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 () {
2023-08-21 04:14:26 +00:00
theme.SetTheme(new(aluminum.Theme))
2023-08-12 05:24:44 +00:00
}
func Name () string {
return "Aluminum"
}
func Description () string {
return "A shiny blue and metallic theme."
}