SilverHawkTheme (Shellshock.io)

Become a Hawk with my first theme

  1. // ==UserScript==
  2. // @name SilverHawkTheme (Shellshock.io)
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.43
  5. // @description Become a Hawk with my first theme
  6. // @author SilverHawk
  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://cdn.discordapp.com/attachments/1104426900765548554/1104472684152246342/hw4498r_1.png
  32. // @grant none
  33. // @lisense MIT
  34. // ==/UserScript==
  35.  
  36. (function () {
  37. const addScript = () => {
  38. document.head.innerHTML += `<style>
  39. * {
  40. --ss-transparent: #00000000;
  41. --ss-black: #000;s
  42. --ss-white: #000000; /*White Text*/
  43. --ss-offwhite: #f18f49;
  44. --ss-yellow0:##f18f49;
  45. --ss-yellow: #171717;
  46. --ss-yolk0: #171717;
  47. --ss-yolk: #000080; /*Yellow Buttons*/
  48. --ss-yolk2: #ffae00;
  49. --ss-red0: #f18f49;
  50. --ss-red: #f18f49;
  51. --ss-red2: #f18f49;
  52. --ss-red-bright: #f18f49;
  53. --ss-gold: gold;
  54. --ss-gold1: gold;
  55. --ss-gold-light: gold;
  56. --ss-brown: #f18f49;
  57. --ss-blue00: #800080;
  58. --ss-blue0: #800080;
  59. --ss-blue1: #800080;
  60. --ss-blue2: #800080;
  61. --ss-blue3: #00c0ff; /*Lighter Box Borders*/
  62. --ss-blue4: blue; /*Blue Subtitles, Darker Box Borders*/
  63. --ss-blue5: blue;
  64. --ss-green0: #000000;
  65. --ss-green1: #000000;
  66. --ss-green2: #000000;
  67. --ss-orange1: #595959;
  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: #f18f49;
  72. --ss-darkoverlay: rgba(0, 0, 0, 0.8);
  73. --ss-darkoverlay2: rgba(0, 0, 0, 0.2);
  74. --ss-lightoverlay: url("https://cdn.discordapp.com/attachments/1104426900765548554/1107169600094863400/Now_Showing.png");/*Main Background*/
  75. --ss-lightbackground: linear-gradient(var(--ss-blue1), var(--ss-blue2));
  76. --ss-blueblend1: linear-gradient(#9ec134, #9ec134); /*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-them-blue-bg: rgba(255, 255, 0,.8);
  83. --ss-them-blue-color: #003b75;
  84. --ss-them-red-bg: rgb(133,0,0,.8);
  85. --ss-them-red-color: red
  86. --ss-me-red-bg: rgba(255,65,69,.8);
  87. --ss-me-blue-bg: rgb(94,187,217,.8);
  88. --ss-me-player-bg: url("https://cdn.discordapp.com/attachments/1104426900765548554/1106026081145860147/SilverHawkTheme_1.png")
  89. }
  90.  
  91. #healthContainer {
  92. position: absolute;
  93. left: 50%; bottom: 1em;
  94. transform: translateX(-50%);
  95. display: inline-block;
  96. width: 6em; height: 6em;
  97. background: var(--ss-blueshadow);
  98. border-radius: 50%;
  99. text-align: center;
  100. }
  101.  
  102. #health {
  103. }
  104.  
  105. #healthHp {
  106. font-family: 'Nunito', bold italic;
  107. font-weight: bold;
  108. color: var(--ss-green);
  109. font-size: 1.2em;
  110. transform: translateY(-3.45em);
  111. }
  112.  
  113. .healthBar {
  114. transform-origin: center;
  115. transform: rotate(90deg);
  116. fill: Silver;
  117. stroke: gold;
  118. stroke-width: 1em;
  119. stroke-dasharray: 14.4513em;
  120. transition: all 0.3s ease-in-out;
  121. }
  122.  
  123. .healthYolk {
  124. fill: white;
  125. }
  126.  
  127. .healthSvg {
  128. width: 100%; height: 100%;
  129. }
  130.  
  131. .crosshair {
  132. position: absolute;
  133. transform-origin: 50% top;
  134. top: 50%;
  135. border: solid 0.05em ;
  136. height: 0.8em;
  137. margin-bottom: 0.12em;
  138. opacity: 1;
  139.  
  140. left: calc(50% - 0.15em);
  141. background: gold;
  142. width: 0.3em;
  143. }
  144.  
  145. .crosshair.normal {
  146. left: calc(50% - 0.15em);
  147. background: gold;
  148. width: 0.3em;
  149. }
  150.  
  151. #hardBoiledValue {
  152. font-family: 'Nunito', sans-serif;
  153. font-weight: bold;
  154. color: var(--ss-white);
  155. font-size: 1.6em;
  156. transform: translateY(-2.6em);
  157. }
  158. .hardBoiledShield {
  159. position: absolute;
  160. transform: translateX(-50%);
  161. height: 100%;
  162. content: url('https://cdn.discordapp.com/attachments/1104500998879334521/1104501149991714896/shieldshs.png');
  163. }
  164.  
  165. .hardBoiledShield {
  166. position: absolute;
  167. transform: translateX(-50%);
  168. height: 100%;
  169. content: url('https://cdn.discordapp.com/attachments/1104500998879334521/1104501149991714896/shieldshs.png');
  170. }
  171.  
  172. .crosshair.powerful {
  173. left: calc(50% - 0.25em);
  174. background: gold;
  175. width: 0.2em;
  176. }
  177.  
  178. #maskmiddle {
  179. background: url('https://cdn.discordapp.com/attachments/1104500998879334521/1104501127522811955/shs-custom-scope-02-back.png') center center no-repeat;
  180. background-size: contain;
  181. width: 100vh;
  182. height: 100vh;
  183. }
  184. .playerSlot--icons .vip-egg {
  185. text-shadow: 1px 1px 2px rgb(0 0 0 / 50%);
  186. content: url('https://cdn.discordapp.com/attachments/1104500998879334521/1104501160544583780/vip.png') !important;
  187. max-height: 1.3em;
  188. max-width: 1.3em;
  189. }
  190.  
  191.  
  192. #best_streak_container h1 {
  193. margin: 0; padding: 0;
  194. display:inline
  195. text-shadow: var(--ss-space-micro) var(--ss-space-micro) var(--ss-shadow);
  196.  
  197.  
  198.  
  199. font-family: 'Nunito', sans-serif !important;
  200. font-size: 2.5em !important;
  201. color: var(--ss-white) !important;
  202. font-weight: bold !important;
  203. text-transform: lowercase;
  204.  
  205. padding-left: 1.5em;
  206. padding-top: 0em;
  207.  
  208. background-image: url('https://cdn.discordapp.com/attachments/1104426900765548554/1104472684152246342/hw4498r_1.png');
  209. background-position: left center;
  210. background-size: contain;
  211. background-repeat: no-repeat;
  212.  
  213.  
  214. }
  215.  
  216. .egg_icon {
  217. height: 2em;
  218. margin: var(--ss-space-micro) var(--ss-space-sm) 0 0;
  219. content: url(https://cdn.discordapp.com/attachments/1104500998879334521/1104501138478333962/egg.png)
  220. }
  221.  
  222. #killBox::before{
  223. font-size: 1.4em;
  224. font-weight: 900;
  225. content: 'YOU PECKED'!important;
  226. color: yellow;
  227. }
  228. #killBox h3{
  229. display:none;
  230. }
  231. #KILL_STREAK::before{
  232. display: normal !important;
  233. }
  234. #deathBox h3{
  235. display:none;
  236. }
  237.  
  238. #deathBox::before{
  239. font-size: 1.4em;
  240. font-weight: 900;
  241. content: 'YOU GOT PECKED BY'!important;
  242. color: yellow;
  243. }
  244.  
  245. .chat {
  246. position: absolute;
  247. font-weight: bold;
  248. color: silver;
  249. z-index: 6;
  250. }
  251.  
  252. #chatOut {
  253. display: none;
  254. bottom: 2.5em;
  255. left: 1em;
  256. }
  257.  
  258. #chatIn {
  259. display: none;
  260. color: silver;
  261. bottom: 1em;
  262. left: 1em;
  263. width: 30%;
  264. border: none;
  265. background: none;
  266. }
  267. }
  268.  
  269. #ammo {
  270. text-align: right;
  271. font-size: 3.25em;
  272. font-family: 'Nunito', sans-serif;
  273. font-weight: bold;
  274. line-height: 1em;
  275. margin: 0;
  276.  
  277. padding-right: 1.4em;
  278. padding-top: 0em;
  279. margin-bottom: 0.1em;
  280.  
  281. background-image: url('https://media.discordapp.net/attachments/927072346647429200/949922254853128212/ammo-removebg-preview.png');
  282. background-position: right center;
  283. background-size: contain;
  284. background-repeat: no-repeat;
  285. }
  286.  
  287.  
  288.  
  289. </style>`
  290. }
  291. document.body ? addScript() : document.addEventListener("DOMContentLoaded", e => addScript());
  292. })();