From 645cf7d32c691bf9c156d34c5b18c0ea5f85e767 Mon Sep 17 00:00:00 2001 From: Jean-Marie Mineau Date: Tue, 11 May 2021 22:39:07 +0200 Subject: [PATCH] swapp alive/dead color --- index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index 5ab68d5..6924251 100644 --- a/index.js +++ b/index.js @@ -3,9 +3,9 @@ import { Universe, Cell } from "wasm-game-of-life"; import { memory } from "wasm-game-of-life/wasm_game_of_life_bg"; const CELL_SIZE = 5; // px -const GRID_COLOR = "#CCCCCC"; -const DEAD_COLOR = "#FFFFFF"; -const ALIVE_COLOR = "#000000"; +const GRID_COLOR = "#444444"; +const DEAD_COLOR = "#000000"; +const ALIVE_COLOR = "#FFFFFF"; const universe = Universe.new(); const width = universe.width();