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