diff options
author | mattkae <mattkae@protonmail.com> | 2021-12-29 16:18:59 -0500 |
---|---|---|
committer | mattkae <mattkae@protonmail.com> | 2021-12-29 16:18:59 -0500 |
commit | dca628d985a1904be7d45b373a17ac9b7e3e09c6 (patch) | |
tree | 1a2e71696c17bff364241e89217a8e30d497d895 /themes/main.cpp | |
parent | 216f0a949c123be69410d855a3a389d3100bf741 (diff) |
Fixed autumn theme
Diffstat (limited to 'themes/main.cpp')
-rw-r--r-- | themes/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/main.cpp b/themes/main.cpp index 54d303d..2d63e00 100644 --- a/themes/main.cpp +++ b/themes/main.cpp @@ -115,7 +115,7 @@ EM_BOOL selectAutumn(int eventType, const EmscriptenMouseEvent* mouseEvent, void // -- Autumn theme void AutumnTheme::load(Renderer2d* renderer) { - renderer->clearColor = Vector4(252, 210, 153, 125).toNormalizedColor(); + renderer->clearColor = Vector4(252, 210, 153, 255).toNormalizedColor(); auto lr = tree.load(renderer); leafParticles.load(renderer, &lr); } |