Main public logs
Appearance
Combined display of all available logs of Continuum Universes Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 02:22, 31 March 2025 Cdjensen94 talk contribs created page MediaWiki:Vector-dark.js (Created page with "const socialMap = { "discord.svg": "#7289da", "twitter.svg": "#1da1f2", "facebook.svg": "#1877f2" }; document.querySelectorAll('img[src$=".svg"]').forEach(img => { const src = img.getAttribute('src'); for (const [key, color] of Object.entries(socialMap)) { if (src.includes(key)) { img.style.filter = `invert(1) sepia(1) saturate(10000%) hue-rotate(${getHue(color)}deg)`; } } }); // You’d need a helper function to translate color to hue — I c...")