2020-08-13 10:28:25 +02:00
|
|
|
export function messageBubbleColorForString(str) {
|
2020-06-15 22:41:37 +02:00
|
|
|
let hash = 0;
|
|
|
|
for (let i = 0; i < str.length; i++) {
|
|
|
|
// eslint-disable-next-line
|
|
|
|
hash = str.charCodeAt(i) + ((hash << 5) - hash);
|
|
|
|
}
|
2020-08-20 08:22:08 +02:00
|
|
|
|
|
|
|
// Tweak these to adjust the result of the color
|
2020-10-17 02:36:11 +02:00
|
|
|
const saturation = 25;
|
|
|
|
const lightness = 45;
|
|
|
|
const alpha = 0.3;
|
|
|
|
const hue = parseInt(Math.abs(hash), 16) % 360;
|
|
|
|
|
|
|
|
return `hsla(${hue}, ${saturation}%, ${lightness}%, ${alpha})`;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function textColorForString(str) {
|
|
|
|
let hash = 0;
|
|
|
|
for (let i = 0; i < str.length; i++) {
|
|
|
|
// eslint-disable-next-line
|
|
|
|
hash = str.charCodeAt(i) + ((hash << 5) - hash);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tweak these to adjust the result of the color
|
|
|
|
const saturation = 80;
|
|
|
|
const lightness = 80;
|
|
|
|
const alpha = 0.8;
|
2020-09-21 23:14:15 +02:00
|
|
|
const hue = parseInt(Math.abs(hash), 16) % 360;
|
2020-08-20 08:22:08 +02:00
|
|
|
|
|
|
|
return `hsla(${hue}, ${saturation}%, ${lightness}%, ${alpha})`;
|
2020-08-13 10:28:25 +02:00
|
|
|
}
|