**GAMER THEME** (Shellshock.io)

Become a Gamer King!!

  1. // ==UserScript==
  2. // @name **GAMER THEME** (Shellshock.io)
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.47
  5. // @description Become a Gamer King!!
  6. // @author austin_is_cool_23
  7. // @match https://shellshock.io/
  8. // @match https://algebra.best/
  9. // @match https://eggcombat.com/*
  10. // @match https://shellshock.io/*
  11. // @match https://eggfacts.fun/*
  12. // @match https://biologyclass.club/*
  13. // @match https://egghead.institute/*
  14. // @match https://egg.dance/*
  15. // @match https://eggisthenewblack.com/*
  16. // @match https://mathfun.rocks/*
  17. // @match https://hardboiled.life/*
  18. // @match https://overeasy.club/*
  19. // @match https://zygote.cafe/*
  20. // @match https://mathdrills.info
  21. // @match https://eggsarecool.com/*
  22. // @match https://deadlyegg.com/*
  23. // @match https://mathgames.world/*
  24. // @match https://hardshell.life/*
  25. // @match https://violentegg.club/*
  26. // @match https://yolk.life/*
  27. // @match https://softboiled.club/*
  28. // @match https://scrambled.world/*
  29. // @match https://deathegg.world/*
  30. // @match https://violentegg.fun/*
  31. // @icon https://st4.depositphotos.com/1000451/30856/i/1600/depositphotos_308568652-stock-photo-golden-egg-with-gold-crown.jpg
  32. // @grant none
  33. // @lisense MIT
  34. // ==/UserScript==
  35. (function () {
  36. const addScript = () => {
  37. document.head.innerHTML += `<style>
  38. * {
  39. --ss-transparent: #00000000;
  40. --ss-black: #000;
  41. --ss-white: #8cb8ff; /*White Text*/
  42. --ss-offwhite: #FFF3E4;
  43. --ss-yellow0:#000000;
  44. --ss-yellow: #171717;
  45. --ss-yolk0: #171717;
  46. --ss-yolk: #000000; /*Yellow Buttons*/
  47. --ss-yolk2: #0044b3;
  48. --ss-red0: #000000;
  49. --ss-red: #000000;
  50. --ss-red2: #000000;
  51. --ss-red-bright: #000000;
  52. --ss-pink: #000000;
  53. --ss-pink1: #000000;
  54. --ss-pink-light: #000000;
  55. --ss-brown: #000147;
  56. --ss-blue00: #003b75;
  57. --ss-blue0: #ffffff;
  58. --ss-blue1: #0407b8;
  59. --ss-blue2: #003b75;
  60. --ss-blue3: #000123; /*Lighter Box Borders*/
  61. --ss-blue4: #003b75; /*Blue Subtitles, Darker Box Borders*/
  62. --ss-blue5: #171717;
  63. --ss-green0: #000000;
  64. --ss-green1: #000000;
  65. --ss-green2: #000000;
  66. --ss-orange1: #595959;
  67. --ss-vip-gold: linear-gradient(to right, #0004ff, #0003c9, #0002a1, #000170, #000147);
  68. --ss-clear: rgba(255, 255, 255, 0);
  69. --ss-blue2clear: rgba(94, 186, 217, 0);
  70. --ss-shadow: rgba(0,0,0,0.4);
  71. --ss-blueshadow: #4a4dff;
  72. --ss-darkoverlay: rgba(0, 0, 0, 0.8);
  73. --ss-darkoverlay2: rgba(0, 0, 0, 0.2);
  74. --ss-lightoverlay: url("https://i.pinimg.com/originals/5f/17/05/5f1705252f330faeba2ea4d30e06f7cf.gif"); /*Main Background*/
  75. --ss-lightbackground: linear-gradient(var(--ss-blue1), var(--ss-blue2));
  76. --ss-blueblend1: linear-gradient(#349ec1, #5fbad8); /*Some Box fill colors*/
  77. --ss-scrollmask1: linear-gradient(var(--ss-blue2clear), var(--ss-blue2));
  78. --ss-scrollmask2: linear-gradient(rgba(56, 158, 192, 0), #389EC0);
  79. --ss-fieldbg: linear-gradient(#91CADB, #000000, #000000, #000000, #000000);
  80. --ss-white-60: rgba(255,255,255,.6);
  81. --ss-white-90: rgba(255,255,255,.9);
  82. --ss-me-player-bg: rgba(247,149,32,.8);
  83. --ss-them-blue-bg: rgba(0,66,87,.8);
  84. --ss-them-blue-color: #003b75;
  85. --ss-them-red-bg: rgb(133,0,0,.8);
  86. --ss-them-red-color: #ff4145
  87. --ss-me-red-bg: rgba(255,65,69,.8);
  88. --ss-me-blue-bg: rgb(94,187,217,.8);
  89. }
  90. </style>`
  91. }
  92. document.body ? addScript() : document.addEventListener("DOMContentLoaded", e => addScript());
  93. })();