Skip to content

Commit

Permalink
chore(color): improve code styling
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermebkel authored Mar 24, 2024
1 parent d896c23 commit d1bf91b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/unoenty/src/utils/color.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d1bf91b

Please sign in to comment.