I want to create a function that will accept any old string (will usually be a single word) and from that somehow generate a hexadecimal value between #000000
#000000
I have opened a pull request to Please.js that allows generating a color from a hash.
You can map the string to a color like so:
const color = Please.make_color({ from_hash: "any string goes here" });
For example, "any string goes here" will return as "#47291b" and "another!" returns as "#1f0c3d"
"any string goes here"
"#47291b"
"another!"
"#1f0c3d"