summaryrefslogtreecommitdiff
path: root/themes/main.cpp
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2021-12-29 16:13:13 -0500
committermattkae <mattkae@protonmail.com>2021-12-29 16:13:13 -0500
commit216f0a949c123be69410d855a3a389d3100bf741 (patch)
treec551d7643b60bde6ec71b3b1934696b7ec5dd939 /themes/main.cpp
parent2a8544e2d2534b138b7100ea8cfb30c21358adaf (diff)
Fix for a terrible orange color
Diffstat (limited to 'themes/main.cpp')
-rw-r--r--themes/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/main.cpp b/themes/main.cpp
index e037dcf..54d303d 100644
--- a/themes/main.cpp
+++ b/themes/main.cpp
@@ -113,9 +113,9 @@ EM_BOOL selectAutumn(int eventType, const EmscriptenMouseEvent* mouseEvent, void
return true;
}
-// -- Autumn theme3
+// -- Autumn theme
void AutumnTheme::load(Renderer2d* renderer) {
- renderer->clearColor = Vector4(252,76,2, 0.5).toNormalizedColor();
+ renderer->clearColor = Vector4(252, 210, 153, 125).toNormalizedColor();
auto lr = tree.load(renderer);
leafParticles.load(renderer, &lr);
}