From d1bf91b5b23531b66f5a6b6a37e872cbda2ef1fc Mon Sep 17 00:00:00 2001 From: Guilherme Mota Date: Sun, 24 Mar 2024 15:34:37 -0300 Subject: [PATCH] chore(color): improve code styling --- packages/unoenty/src/utils/color.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;