Shell Shockers Red-Blue-Black Theme

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

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 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; }
    `);
})();