From a02d8766968e000880097aefefa0369bf84617f1 Mon Sep 17 00:00:00 2001 From: yukirij Date: Tue, 27 Aug 2024 11:30:23 -0700 Subject: [PATCH] Change animation shadow color. --- www/js/interface.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/js/interface.js b/www/js/interface.js index e9f0698..c944dc9 100644 --- a/www/js/interface.js +++ b/www/js/interface.js @@ -642,8 +642,8 @@ const INTERFACE = { from_y = to_y - (gui_scale / 1.5); switch(piece.player) { - case 0: ctx.fillStyle = INTERFACE.Color.DawnDark; break; - case 1: ctx.fillStyle = INTERFACE.Color.DuskDark; break; + case 0: ctx.fillStyle = INTERFACE.Color.Dawn; break; + case 1: ctx.fillStyle = INTERFACE.Color.Dusk; break; } ctx.save();