// ==UserScript==
// @name AR TECHWAY THEME
// @namespace http://tampermonkey.net/
// @version 0.1
// @description My theme, made with EZTHEME
// @author DanTheMan_yt
// @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://cdn.discordapp.com/attachments/986629345957281792/993515395011055766/AR_TECHWAY_1.gif') !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: #BEEFEF!important; background-size: cover !important;} #equip_sidebox { border: var(--ss-space-sm) solid #E0FFFE} .front_panel, #equip_sidebox { background: #BEEFEF; background-size: cover !important;} .front_panel { border: var(--ss-space-sm) solid #E0FFFE; } .ss_field, .ss_select { background: #8FD8DF; border: 1px solid #000000; color: #000000;} .btn_blue, .btn_green, .ss_bigtab, .ss_bigtab.selected, .button_blue { background: #8FD8DF !important; border: 0.2em solid #000000 !important; color: #000000 !important; } .btn_yolk, .btn_red, .btn_blue1 { background: linear-gradient(#72EAFF,#ffffff,#8FD8DF) !important; border: 0.2em solid #00 !important; color: #45A2A2 !important; } .morestuff { background-color: linear-gradient(#72EAFF,#ffffff,#8FD8DF) !important; border: 0.2em solid #00 !important; } .ss_bigtab:hover { color: #000000 !important; } #stat_item { background: linear-gradient(#72EAFF,#BEEFEF,#8FD8DF); } #stat_item h4, .stat_stat { color: #ffffff; } .news_item:nth-child(odd), .stream_item:nth-child(odd) { background: radial-gradient(#8FD8DF,#72EAFF,#000000); } .news_item:nth-child(even), .stream_item:nth-child(even) { background: radial-gradient(#8FD8DF,#72EAFF,#000000); } .stream_item:hover, .news_item.clickme:hover { background: #000000 !important; } #weapon_select:nth-child(1n+0) .weapon_img { background: radial-gradient(#8FD8DF,#72EAFF,#000000)!important; border: 3px solid #000000!important; } #popupTipDay #weapon_select:nth-child(1n+0) .weapon_img { background: radial-gradient(#8FD8DF,#72EAFF,#000000)!important; border: 3px solid #000000!important; } h3, h1, h2, h4, h5, h6, .front_panel h3, #equip.equipped_slots h3, #item_grid h3 { color: #000000 !important; } label, .label { color: #000000 !important; } .egg_count { color: #ffffff; } .account_eggs { background: linear-gradient(#8FD8DF,#72EAFF,#000000); } #equip_equippedslots .equip_item, #equip_itemtype .selected, #equip_equippedslots .equip_item:hover { background: linear-gradient(#8FD8DF,#72EAFF,#000000); background-color: linear-gradient(#8FD8DF,#72EAFF,#000000); border: 0.33em solid #000000; } #equip_grid .store_item, #equip_grid .highlight, #equip_grid .store_item:hover { background: radial-gradient(#8FD8DF,#72EAFF,#000000); border: 0.33em solid #72EAFF; color: #72EAFF; } .popup_lg, .popup_sm { background: url('https://cdn.discordapp.com/attachments/986629345957281792/993518197355581531/AR_TECHWAY_2.gif'); border: 0.33em solid https://cdn.discordapp.com/attachments/986629345957281792/993518197355581531/AR_TECHWAY_2.gif; } .box_blue2 { background-color: #72EAFF; } .pause-bg { background: #72EAFF !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: linear-gradient(#8FD8DF,#72EAFF,#000000); } .crosshair { border: 0.05em solid #8FD8DF; } .crosshair.powerfull { background: #E0FFFE; } #createPrivateGame .roundme_sm, #settingsPopup .roundme_sm, #pickServerPopup .roundme_sm, #adBlockerVideo .roundme_sm { background: #72EAFF !important }`
document.head.insertAdjacentHTML("beforeend", `<style>${css}</style>`)