Потребляйте кальций
// ==UserScript==
// @name Тупая фигня, которая делает орбитар розовым с зайчиками
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Потребляйте кальций
// @author Rawlique
// @match *://orbitar.space/*
// @icon https://orbitar.space/favicon.ico
// @license WTFPL
// @grant none
// ==/UserScript==
(function() {
let root = document.documentElement;
let html = document.querySelector('html');
let body = document.querySelector('body');
root.style.setProperty('--fgHardest', '#5C0D28');
root.style.setProperty('--fgHarder', '#6E1F3B');
root.style.setProperty('--fgHard', '#80314F');
root.style.setProperty('--fg', '#924262');
root.style.setProperty('--fgMedium', '#A45476');
root.style.setProperty('--fgSoft', '#B76689');
root.style.setProperty('--fgSofter', '#C9789D');
root.style.setProperty('--fgSoftest', '#DB89B0');
root.style.setProperty('--fgGhost', '#ED9BC4');
root.style.setProperty('--fgAlmostInvisible', '#FFADD7');
root.style.setProperty('--lowered', '#efdcde');
root.style.setProperty('--bg', '#fcebed');
root.style.setProperty('--elevated', '#fff6f7');
root.style.setProperty('--primary', '#924262');
root.style.setProperty('--primaryHover', '#fd3db0');
root.style.setProperty('--primaryGhost', '#f5b0d9');
root.style.setProperty('--link', '#c9789d');
root.style.setProperty('--linkHover', '#fd3db0');
root.style.setProperty('--linkVisited', '#c186a2');
root.style.setProperty('--linkGhost', '#f5b0d9');
body.style.backgroundImage = 'url(https://idiod.video/0nd5la.png)';
html.style.backgroundImage = 'url(https://idiod.video/0nd5la.png)';
let numTries = 0;
let interval = setInterval(function(){
numTries += 1;
if(numTries > 10){
clearInterval(interval);
}
let juj = document.querySelector('[class^="App_monster"] > svg');
if (juj) {
juj.setAttribute('style', 'fill: #DB89B0');
}
}, 100);
})();