From 0e785a1d89019b8e7d81c85a6d36f7b8073cf663 Mon Sep 17 00:00:00 2001 From: Adam French Date: Fri, 21 Nov 2025 23:46:57 +0000 Subject: [PATCH] new colors --- html/js/mobile-automata.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/js/mobile-automata.mjs b/html/js/mobile-automata.mjs index 6640756..1ef708d 100644 --- a/html/js/mobile-automata.mjs +++ b/html/js/mobile-automata.mjs @@ -295,8 +295,8 @@ export function renderToCanvas(canvas, width, height, sn = 0, dn = 0) { const img = ctx.createImageData(width, height); const data = img.data; - const colorOn = [20, 20, 100]; // dark blue (active cell) - const colorOff = [20, 20, 90]; // darker blue (inactive cell) + const colorOn = [30, 30, 120]; // dark blue (active cell) + const colorOff = [30, 30, 110]; // darker blue (inactive cell) for (let y = 0; y < height; y++) { for (let x = 0; x < width; x++) {