Gold Shell Shockers Theme

Shell Shockers Theme

// ==UserScript==
// @name         Gold Shell Shockers Theme
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Shell Shockers Theme
// @author       Jayvan
// @match        https://shellshock.io/
// @icon         https://cdn.discordapp.com/attachments/811268272418062359/901263906515857458/unknown.png
// @grant        none
// ==/UserScript==

let stylesheet = document.createElement('link');
stylesheet.rel = 'stylesheet';
stylesheet.href = 'https://shellthemes.jayvan229.repl.co/ezthemedefault.css';
document.head.appendChild(stylesheet);

let css =
    `#ss_background, #gameDescription, .load_screen, #progress-container { background: url('https://images.hdqwalls.com/wallpapers/triangle-solid-black-gold-4k-wk.jpg') !important; position: absolute !important; background-size: cover !important; background-repeat: no-repeat !important; background-position: center !important; width: 100% !important; height: 100% !important; } div.media-tabs-content.front_panel.roundme_sm { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To=')!important; background-size: cover !important;} #equip_sidebox { border: var(--ss-space-sm) solid black} .front_panel, #equip_sidebox { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); background-size: cover !important;} .front_panel { border: var(--ss-space-sm) solid black; } .ss_field, .ss_select { background: white; border: 1px solid black; color: black;} .btn_blue, .btn_green, .ss_bigtab, .ss_bigtab.selected, .button_blue { background: gold !important; border: 0.2em solid black !important; color: black !important; } .btn_yolk, .btn_red, .btn_blue1 { background: black !important; border: 0.2em solid black !important; color: gold !important; } .morestuff { background-color: black !important; border: 0.2em solid black !important; } .ss_bigtab:hover { color: black !important; } #stat_item { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); } #stat_item h4, .stat_stat { color: black; } .news_item:nth-child(odd), .stream_item:nth-child(odd) { background: url('https://cdn.discordapp.com/attachments/811268272418062359/908381929164910642/2Q.png'); } .news_item:nth-child(even), .stream_item:nth-child(even) { background: url('https://cdn.discordapp.com/attachments/811268272418062359/908381929164910642/2Q.png'); } .stream_item:hover, .news_item.clickme:hover { background: gold !important; } #weapon_select:nth-child(1n+0) .weapon_img { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To=')!important; border: 3px solid black!important; } #popupTipDay #weapon_select:nth-child(1n+0) .weapon_img { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To=')!important; border: 3px solid black!important; } h3, h1, h2, h4, h5, h6, .front_panel h3, #equip.equipped_slots h3, #item_grid h3 { color: black !important; } label, .label { color: black !important; } .egg_count { color: black; } .account_eggs { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); } #equip_equippedslots .equip_item, #equip_itemtype .selected, #equip_equippedslots .equip_item:hover { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); background-color: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); border: 0.33em solid black; } #equip_grid .store_item, #equip_grid .highlight, #equip_grid .store_item:hover { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); border: 0.33em solid black; color: black; } .popup_lg, .popup_sm { background: url('https://wallpaperaccess.com/full/3375439.jpg'); border: 0.33em solid black; } .box_blue2 { background-color: transparent; } .pause-bg { background: rgba(0,0,0,0.3) !important; } #maskmiddle { background: url('../img/scope.png') center center no-repeat !important; background-size: contain !important; width: 100vh !important; height: 100vh !important; } .crosshair.normal { background: gold; } .crosshair { border: 0.05em solid black; } .crosshair.powerfull { background: gold; } #createPrivateGame .roundme_sm, #settingsPopup .roundme_sm, #pickServerPopup .roundme_sm, #adBlockerVideo .roundme_sm { background: transparent !important }`
    document.head.insertAdjacentHTML("beforeend", `<style>${css}</style>`)