Removed console.log

This commit is contained in:
Koper
2023-10-25 15:17:34 +01:00
committed by Mathieu Virbel
parent 5f00673ebd
commit 16a8579272

View File

@@ -101,8 +101,6 @@ export const generateHighContrastColor = (
backgroundColor: [number, number, number] | null = null,
) => {
const hash = murmurhash3_32_gc(name);
console.log(name, hash);
let red = (hash & 0xff0000) >> 16;
let green = (hash & 0x00ff00) >> 8;
let blue = hash & 0x0000ff;