Shell Shockers Red-Blue-Black Theme

Applies a red, blue, and black theme with animated buttons.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Shell Shockers Red-Blue-Black Theme
// @namespace    http://tampermonkey.net/
// @version      1.9
// @description  Applies a red, blue, and black theme with animated buttons.
// @author       Hans
// @match        *://shellshock.io/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle(`
        body { background: linear-gradient(45deg, #ff0000, #1e90ff, #000000) !important; color: #fff !important; }
        .hud-wrapper, .menu-wrapper, .leaderboard, .modal-content, .popup, .modal-dialog { background: rgba(0, 0, 0, 0.8) !important; }
        .hud-score, .menu-button, .leaderboard-entry, .btn, .btn-primary, .btn-secondary, button { color: #fff !important; border-color: #ff0000 !important; }
        .btn, .btn-primary, .btn-secondary, button { background: linear-gradient(45deg, #ff0000, #1e90ff, #000000) !important; transition: 0.4s; }
        .btn:hover, .btn-primary:hover, .btn-secondary:hover, button:hover { background: linear-gradient(45deg, #1e90ff, #000000, #ff0000) !important; color: #fff !important; animation: colorShift 1s linear infinite; }
        @keyframes colorShift { 0%, 100% { background: linear-gradient(45deg, #ff0000, #1e90ff, #000000); } 50% { background: linear-gradient(45deg, #1e90ff, #000000, #ff0000); } }
        .progress-bar { background: linear-gradient(90deg, #1e90ff, #ff0000) !important; }
    `);
})();