返回首頁 

AR Techway Shell Shockers THEME

My theme, made with EZTHEME


Install this script?
// ==UserScript==// @name         AR Techway Shell Shockers THEME// @namespace    http://tampermonkey.net/// @version      0.1// @description  My theme, made with EZTHEME// @author       You// @match        https://shellshock.io/// @icon         https://cdn.discordapp.com/attachments/811268272418062359/901263906515857458/unknown.png// @grant        none// @license MIT// ==/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/918998543329554482/929482072677032007/The.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: linear-gradient(#FF1616,#5CE1E6,#FFDE59,#000)!important; background-size: cover !important;} #equip_sidebox { border: var(--ss-space-sm) solid #000} .front_panel, #equip_sidebox { background: linear-gradient(#FF1616,#5CE1E6,#FFDE59,#000); background-size: cover !important;} .front_panel { border: var(--ss-space-sm) solid #000; } .ss_field, .ss_select { background: #D9D9D9; border: 1px solid #000; color: #5CE1E6;} .btn_blue, .btn_green, .ss_bigtab, .ss_bigtab.selected, .button_blue { background: #FF7C7C !important; border: 0.2em solid #000 !important; color: #FFDE59 !important; } .btn_yolk, .btn_red, .btn_blue1 { background: linear-gradient(#FF1616,#5CE1E6,#FFDE59,#000) !important; border: 0.2em solid #000 !important; color: #000 !important; } .morestuff { background-color: linear-gradient(#FF1616,#5CE1E6,#FFDE59,#000) !important; border: 0.2em solid #000 !important; } .ss_bigtab:hover { color: #FFDE59 !important; } #stat_item { background: #5CE1E6; } #stat_item h4, .stat_stat { color: #FF7C7C; } .news_item:nth-child(odd), .stream_item:nth-child(odd) { background: #FF1616; } .news_item:nth-child(even), .stream_item:nth-child(even) { background: #5CE1E6; } .stream_item:hover, .news_item.clickme:hover { background: #FFDE59 !important; } #weapon_select:nth-child(1n+0) .weapon_img { background: linear-gradient(#FF1616,#5CE1E6,#FFDE59,#000)!important; border: 3px solid #5CE1E6!important; } #popupTipDay #weapon_select:nth-child(1n+0) .weapon_img { background: linear-gradient(#FF1616,#5CE1E6,#FFDE59,#000)!important; border: 3px solid #5CE1E6!important; } h3, h1, h2, h4, h5, h6, .front_panel h3, #equip.equipped_slots h3, #item_grid h3 { color:  !important; } label, .label { color:  !important; } .egg_count { color: #FF7C7C; } .account_eggs { background: linear-gradient(#FF1616,#5CE1E6,#FFDE59,#000); } #equip_equippedslots .equip_item, #equip_itemtype .selected, #equip_equippedslots .equip_item:hover { background: linear-gradient(#FF1616,#5CE1E6,#FFDE59,#000); background-color: linear-gradient(#FF1616,#5CE1E6,#FFDE59,#000); border: 0.33em solid #5CE1E6; } #equip_grid .store_item, #equip_grid .highlight, #equip_grid .store_item:hover { background: linear-gradient(#FF1616,#5CE1E6,#FFDE59,#000); border: 0.33em solid #5CE1E6; color: #5CE1E6; } .popup_lg, .popup_sm { background: linear-gradient(#FF1616,#5CE1E6,#FFDE59,#000); border: 0.33em solid #5CE1E6; } .box_blue2 { background-color: #5CE1E6; } .pause-bg { background: #5CE1E6 !important; } #maskmiddle { background: url('https://cdn.discordapp.com/attachments/918998543329554482/929820867003834458/scop1e.png') center center no-repeat !important; background-size: contain !important; width: 100vh !important; height: 100vh !important; } .crosshair.normal { background: linear-gradient(#FF1616,#5CE1E6,#FFDE59,#000); } .crosshair { border: 0.05em solid linear-gradient(#FF1616,#5CE1E6,#FFDE59,#000); } .crosshair.powerfull { background: #000; } #createPrivateGame .roundme_sm, #settingsPopup .roundme_sm, #pickServerPopup .roundme_sm, #adBlockerVideo .roundme_sm { background: #5CE1E6 !important }`document.head.insertAdjacentHTML("beforeend", `<style>${css}</style>`)