From 1da6fbd35f21a26874051da26882b36d1bd36463 Mon Sep 17 00:00:00 2001 From: Miodec Date: Sun, 24 Aug 2025 13:26:48 +0200 Subject: [PATCH] chore: make failed blend hot pink to make it more obvious something went wrong --- frontend/src/ts/utils/colors.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/ts/utils/colors.ts b/frontend/src/ts/utils/colors.ts index 8c24118a3..07174e682 100644 --- a/frontend/src/ts/utils/colors.ts +++ b/frontend/src/ts/utils/colors.ts @@ -35,7 +35,7 @@ export function blendTwoHexColors( const blended = normalBlend(rgba1, rgba2); return rgbToHex(blended.r, blended.g, blended.b); } else { - return "#000000"; + return "#ff00ffff"; } }