From 37650b764ddc877969ef2a770468b7a1ba951866 Mon Sep 17 00:00:00 2001 From: vndangkhoa Date: Wed, 29 Apr 2026 15:41:41 +0700 Subject: [PATCH] use desktop reference colors for mobile blinking --- src/App.jsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index e8fbd97..96dba1e 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -24,9 +24,7 @@ function TetrisPiece({ piece, isDark }) { setShowText(false); }; - const bgColor = piece.label === 'cv' - ? piece.color - : (isDark ? piece.colorDark : piece.color); + const bgColor = piece.label === 'cv' ? piece.color : piece.color; const rowDelay = piece.startY * 4; const textColor = '#ffffff'; const isStatic = piece.label === 'cv' || piece.featured;