Voxelium Dark Theme

CSS For Voxiom.IO | Dark Theme

  1. // ==UserScript==
  2. // @name Voxelium Dark Theme
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description CSS For Voxiom.IO | Dark Theme
  6. // @author Whoami Scripts
  7. // @match https://voxiom.io/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. const style = document.createElement('style');
  16. style.textContent = `
  17. @font-face {
  18. font-family: 'Overpass';
  19. src: url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
  20. }
  21. @font-face {
  22. font-family: 'Lexend';
  23. src: url('https://fonts.googleapis.com/css2?family=Lexend:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
  24. }
  25. @font-face {
  26. font-family: 'Montserrat';
  27. src: url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
  28. }
  29. @font-face {
  30. font-family: 'Chivo';
  31. src: url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
  32. }
  33. #key-input {
  34. background-color: #000000;
  35. color: #fffde7;
  36. font-family: 'Chivo';
  37. }
  38. #fps-booster-container {
  39. background-color: #1a1a1a;
  40. height: 160px;
  41. }
  42. body div button {
  43. font-family: 'Chivo';
  44. height: 60px;
  45. }
  46. div.sc-iJKOTD.jqbzkO, a.sc-giYglK.bzRdHa, img.sc-pVTFL.iRqeFU {
  47. display: none;
  48. }
  49. a.sc-llYSUQ.jIHuvv {
  50. background-color: #000000;
  51. font-family: 'Montserrat';
  52. border-color: #ffeb3b;
  53. height: 40px;
  54. width: 90px;
  55. align-items: center;
  56. }
  57. div.sc-lbCmg.kLCLJb, a.sc-kTwdzw.fPcDtj, a.sc-cgLTVH.hqKrdE, div.sc-fjHZBf.dnwnzt, div.sc-ddCuvZ.gLLxZA {
  58. font-family: 'Montserrat';
  59. }
  60. div.sc-ivsNig.kqMamr, div.sc-ikJyIC.vCrTy, div.sc-kLwhqv.hhwIom, div.sc-kITQLZ.gNxOdb, div.sc-inrDdN.ehvxZP, div.sc-bxYNtK.ekaCUa, div.sc-efaPnb.fJtqgn, div.sc-hnCQzQ.gFCsYN, div.sc-gJvHvF.iNiBGU, div.sc-kBysnm.bWLXlX, div.sc-wAsCI.iA-diDa, div.Dropdown-control, div.Dropdown-placeholder.is-selected, div.sc-bDOMBz.emNSSu, div.sc-bUKjYF.dZDPlS {
  61. background-color: #000000;
  62. }
  63. div.sc-fpGCtG.ifHbmM, div.sc-kudmJA.eOpYps {
  64. font-family: 'Overpass';
  65. background-color: #000000;
  66. }
  67. div.sc-ccATMr.bUdBeT, div div div {
  68. background-color: #0c0d0d;
  69. font-family: 'Montserrat';
  70. }
  71. `;
  72. document.head.appendChild(style);
  73. })();