fleet/orbit/cmd/desktop/theme.go
Zach Wasserman c01bf03435
Windows desktop theme detection (#7363)
Windows portion of #6675. Detect dark vs. light theme and change the icon to match (as best as we can).
2022-09-23 10:07:38 -07:00

9 lines
134 B
Go

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