[v2] Fix vanilla template

This commit is contained in:
Lea Anthony
2021-11-08 20:08:41 +11:00
parent 79e99b68d6
commit 0844113f3a
2 changed files with 2 additions and 3 deletions

View File

@@ -1,12 +1,11 @@
html {
background-color: rgba(33, 37, 43, 0.5);
background-color: rgba(33, 37, 43, 0.2);
text-align: center;
color: white;
}
body {
margin: 0;
color: white;
font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;

View File

@@ -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,