fix wrong Jellyfin gradient colors

This commit is contained in:
KGT1 2020-09-23 17:59:56 +02:00
parent a719ccecd9
commit 0d26a5723c

View File

@ -20,8 +20,9 @@ var isSummendByPlay = false;
// random Color of the Jellyfin Logo Gradient // random Color of the Jellyfin Logo Gradient
function getRandomDiscordColor () { function getRandomDiscordColor () {
let random = Math.random();
function randomNumber (b, a) { function randomNumber (b, a) {
return Math.floor((Math.random() * Math.pow(Math.pow((b - a), 2), 1 / 2)) + (b > a ? a : b)); return Math.floor(random * Math.pow(Math.pow((b - a), 2), 1 / 2)) + (b > a ? a : b));
} }
const GRANDIENT_START = "#AA5CC3"; const GRANDIENT_START = "#AA5CC3";