forked from rDrama/rDrama
1
0
Fork 0

consistency

master
Aevann 2023-07-23 02:55:18 +03:00
parent de553a6c1d
commit 755172a9ba
1 changed files with 3 additions and 1 deletions

View File

@ -9,7 +9,9 @@ function deltaRgb (rgb1, rgb2) {
return Math.sqrt(2 * drp2 + 4 * dgp2 + 3 * dbp2 + t * (drp2 - dbp2) / 256)
}
const toRGBArray = rgbStr => rgbStr.match(/\d+/g).map(Number);
function toRGBArray(rgbStr) {
return rgbStr.match(/\d+/g).map(Number);
}
const background_color = toRGBArray(getComputedStyle(document.documentElement).getPropertyValue('--background'));