diff --git a/packages/unoenty/src/utils/color.ts b/packages/unoenty/src/utils/color.ts index 21ed286..ccf1188 100644 --- a/packages/unoenty/src/utils/color.ts +++ b/packages/unoenty/src/utils/color.ts @@ -7,7 +7,7 @@ export const stringToColor = (value: string): string => { hash = value.charCodeAt(i) + ((hash << 5) - hash) } - let color = '#'; + let color = "#" for (i = 0; i < 3; i += 1) { const value = (hash >> (i * 8)) & 0xff;