mirror of
https://github.com/fleetdm/fleet
synced 2026-05-20 07:29:08 +00:00
Windows portion of #6675. Detect dark vs. light theme and change the icon to match (as best as we can).
9 lines
134 B
Go
9 lines
134 B
Go
package main
|
|
|
|
type theme string
|
|
|
|
const (
|
|
themeDark theme = "dark"
|
|
themeLight = "light"
|
|
themeUnknown = "unknown"
|
|
)
|