chore: make failed blend hot pink to make it more obvious something went wrong

This commit is contained in:
Miodec 2025-08-24 13:26:48 +02:00
parent 5937f49246
commit 1da6fbd35f

View file

@ -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";
}
}