fleet/orbit/cmd/desktop/theme.go

10 lines
134 B
Go
Raw Normal View History

package main
type theme string
const (
themeDark theme = "dark"
themeLight = "light"
themeUnknown = "unknown"
)