package application type BackdropType int32 const ( Auto BackdropType = 0 None BackdropType = 1 Mica BackdropType = 2 Acrylic BackdropType = 3 Tabbed BackdropType = 4 ) type WindowsWindow struct { // Select the type of translucent backdrop. Requires Windows 11 22621 or later. BackdropType BackdropType // Disable the icon in the titlebar DisableIcon bool // Theme. Defaults to SystemDefault which will use whatever the system theme is. The application will follow system theme changes. Theme Theme // Custom colours for dark/light mode CustomTheme *ThemeSettings } type Theme int const ( // SystemDefault will use whatever the system theme is. The application will follow system theme changes. SystemDefault Theme = 0 // Dark Mode Dark Theme = 1 // Light Mode Light Theme = 2 ) // ThemeSettings defines custom colours to use in dark or light mode. // They may be set using the hex values: 0x00BBGGRR type ThemeSettings struct { DarkModeTitleBar int32 DarkModeTitleBarInactive int32 DarkModeTitleText int32 DarkModeTitleTextInactive int32 DarkModeBorder int32 DarkModeBorderInactive int32 LightModeTitleBar int32 LightModeTitleBarInactive int32 LightModeTitleText int32 LightModeTitleTextInactive int32 LightModeBorder int32 LightModeBorderInactive int32 }