From 0d097aa643450e6cfbf46b912faaae75e55f1fa5 Mon Sep 17 00:00:00 2001 From: neru <152752583+neeeruuu@users.noreply.github.com> Date: Fri, 2 Jan 2026 02:22:50 -0300 Subject: [PATCH] style: touch up grass colours --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4189880..a81af5e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -183,8 +183,8 @@ function Grass({ const worldZBase = y * size; const color = new Color(); - const lushColor = new Color('#009c00'); - const dryColor = new Color('#628502'); + const lushColor = new Color('#348a34'); + const dryColor = new Color('#556b19'); for (let i = 0; i < count; i++) { const localX = (Math.random() - 0.5) * size;