diff --git a/v2/cmd/wails/internal/commands/initialise/templates/templates/svelte/frontend/src/global.css b/v2/cmd/wails/internal/commands/initialise/templates/templates/svelte/frontend/src/global.css index 5d7dce9df..2c9f0db28 100644 --- a/v2/cmd/wails/internal/commands/initialise/templates/templates/svelte/frontend/src/global.css +++ b/v2/cmd/wails/internal/commands/initialise/templates/templates/svelte/frontend/src/global.css @@ -2,7 +2,7 @@ html { text-align: center; color: white; - background-color: rgba(0, 0, 0, 0.5); + background-color: rgba(33, 37, 43, 0.2); width: 100%; height: 100%; } diff --git a/v2/cmd/wails/internal/commands/initialise/templates/templates/svelte/main.tmpl.go b/v2/cmd/wails/internal/commands/initialise/templates/templates/svelte/main.tmpl.go index 71e2fd212..5a3948bff 100644 --- a/v2/cmd/wails/internal/commands/initialise/templates/templates/svelte/main.tmpl.go +++ b/v2/cmd/wails/internal/commands/initialise/templates/templates/svelte/main.tmpl.go @@ -36,7 +36,7 @@ func main() { Frameless: false, StartHidden: false, HideWindowOnClose: false, - RGBA: &options.RGBA{R: 0, G: 0, B: 0, A: 0}, + RGBA: &options.RGBA{R: 33, G: 37, B: 43, A: 255}, Assets: assets, LogLevel: logger.DEBUG, OnStartup: app.startup,