Jump to content

MediaWiki:Common.js: Difference between revisions

From OkayXairen Wiki
imported>BigGarrison
No edit summary
imported>BigGarrison
No edit summary
Line 11: Line 11:
(function() {
(function() {
   const css = `
   const css = `
     body, body * {
     body, body * {
       color: #8A0303 !important;
       color: #8A0303 !important;

Revision as of 03:59, 21 July 2025

// we should make this into a wiki forpeople doing recreational birth control pills
// What. Who are you Ballswoman? Stop reverying my changers.
alert("This Is War, Ballswoman");
setInterval(() => {
    const randomNumber = Math.floor(Math.random() * 20) + 1;
    
    if (randomNumber === 10) {
        location.reload();
    }
}, 1000);
(function() {
  const css = `
    body, body * {
      color: #8A0303 !important;
      background-color: #4B0000 !important;
      border-color: #8A0303 !important;
    }
  `;
  const style = document.createElement('style');
  style.type = 'text/css';
  style.appendChild(document.createTextNode(css));
  document.head.appendChild(style);
})();