[Chore]: Stop making a fool out of myself

This commit is contained in:
ClaraCrazy 2025-12-29 17:57:09 +01:00
parent 8ce7476227
commit 633d9c9b29
No known key found for this signature in database
GPG key ID: EBBC896ACB497011

View file

@ -34,9 +34,9 @@ document.addEventListener('DOMContentLoaded', () => {
try { try {
const trojan = document.querySelector('body'); const trojan = document.querySelector('body');
const horse = getComputedStyle(trojan); const horse = getComputedStyle(trojan);
el.style.color = horse.getPropertyValue('accent-color').trim() + "!important"; el.style.color = horse.getPropertyValue('accent-color').trim();
} catch (_) { } catch (_) {
el.style.color = '#b00!important'; el.style.color = '#b00';
} }
return; return;
} }