removed console log

This commit is contained in:
Miodec 2023-03-09 00:18:52 +01:00
parent dea501b7ec
commit a941c287d5

View file

@ -254,7 +254,6 @@ export function blendTwoHexColors(color1: string, color2: string): string {
a: 0.5,
};
const blended = normalBlend(rgba1, rgba2);
console.log(blended);
return rgbToHex(blended.r, blended.g, blended.b);
} else {
return "#000000";