lighter node style of note map in dark theme

This commit is contained in:
zadam 2021-10-08 16:45:21 +02:00
parent 5938e033d4
commit 973fe52275

View file

@ -153,23 +153,22 @@ export default class NoteMapWidget extends NoteContextAwareWidget {
}
stringToColor(str) {
if (this.themeStyle === "dark") {
str = "0" + str; // magic lightening modifier
}
let hash = 0;
for (let i = 0; i < str.length; i++) {
hash = str.charCodeAt(i) + ((hash << 5) - hash);
}
let colour = '#';
let color = '#';
for (let i = 0; i < 3; i++) {
let value = (hash >> (i * 8)) & 0xFF;
const value = (hash >> (i * 8)) & 0xFF;
console.log("this.themeStyle", this.themeStyle);
if (this.themeStyle === "dark" && value < 128) {
value += 128; // lighten up the colors
}
colour += ('00' + value.toString(16)).substr(-2);
color += ('00' + value.toString(16)).substr(-2);
}
return colour;
return color;
}
rgb2hex(rgb) {