Skip to content

Instantly share code, notes, and snippets.

@valkheim
Created November 11, 2020 18:19
Show Gist options
  • Save valkheim/408c335eef78d3823c46ad74b1ec9f6f to your computer and use it in GitHub Desktop.
Save valkheim/408c335eef78d3823c46ad74b1ec9f6f to your computer and use it in GitHub Desktop.
const hashCode = str =>
_.reduce(
str,
(acc, c) => {
return (acc += c.charCodeAt(0)); // + ((acc << 5) - acc);
},
0
);
const intToRGB = i => {
const c = (i & 0x00ffffff).toString(16).toUpperCase();
return "00000".substring(0, 6 - c.length) + c;
};
export const colorize = str => "#" + intToRGB(hashCode(str));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment