// ==UserScript==
// @name Tide League Shell Shockers Theme
// @namespace http://tampermonkey.net/
// @version 1
// @description SS Theme for TL
// @author Jayvan
// @match https://shellshock.io/
// @grant none
// @downloadURL none
// ==/UserScript==
(function() {
const theme=()=>{
document.title = 'Tide League';
let style = document.createElement('link');
style.rel = 'stylesheet';
style.href = 'https://Tide-League-Theme.jayvan229.repl.co/style.css';
document.head.appendChild(style);
setTimeout(function(){
document.getElementById("logo").innerHTML = "
";
document.getElementById("shellshockers_titlescreen_wrap").innerHTML = "

";
}, 2000);
}
if(document.body){
theme();
}else{
document.addEventListener('DOMContentLoaded', function(load){
theme();
})
}
})();