Nitro Type KingLegend Text Style

nnnnnnnn

  1. // ==UserScript==
  2. // @name Nitro Type KingLegend Text Style
  3. // @namespace http://userstyles.org/
  4. // @description nnnnnnnn
  5. // @author aoesnuthaosnetuh
  6. // @homepage https://userstyles.org/styles/237598
  7. // @include http://nitrotype.com/*
  8. // @include https://nitrotype.com/*
  9. // @include http://*.nitrotype.com/*
  10. // @include https://*.nitrotype.com/*
  11. // @run-at document-start
  12. // @version 0.20220427123648
  13. // ==/UserScript==
  14. (function() {var css = [
  15. ".dash-letter {",
  16. " font-family: 'Roboto Mono', monospace;",
  17. " padding: 0px 12px !important;",
  18. " /*",
  19. " change to 5px if you're using multi-line",
  20. " */",
  21. " font-weight: 500;",
  22. " color: white;",
  23. "}",
  24. "span.dash-letter.is-waiting {",
  25. " border-radius: 10px!important;",
  26. " background: rgb(70, 102, 150);",
  27. "}",
  28. "span.dash-letter.is-incorrect {",
  29. " border-radius: 10px !important;",
  30. " background: #a83232;",
  31. "}",
  32. "div.dash-copyContainer {",
  33. " background: rgb(30, 30, 40);",
  34. " box-shadow: 0px 0px 25px black;",
  35. " border-radius: 30px;",
  36. "}",
  37. ".rv-xy-plot__grid-lines {",
  38. " color: red;",
  39. " background: red;",
  40. " background-color: red;",
  41. " fill: red;",
  42. "}",
  43. "#chart-gradient {",
  44. " color: red !important;",
  45. "}",
  46. ".chart--a .chart-gradient .chart-gradient1 {",
  47. " stop-color: #f00;",
  48. " stop-opacity: 0.6;",
  49. "}",
  50. ".chart--a .chart-gradient .chart-gradient2 {",
  51. " stop-color: #486dd7;",
  52. " stop-opacity: 0.3;",
  53. "}",
  54. ".chart--a .chart-gradient .chart-gradient3 {",
  55. " stop-color: #000;",
  56. " stop-opacity: 0.5;",
  57. "}",
  58. ".chart--a .chart-line {",
  59. "stroke: rgb(0, 0, 0, 0) !important;",
  60. "stroke-width: 2 !important;",
  61. "}",
  62. ".chart--a .chart-line circle {",
  63. "fill: #000 !important;",
  64. " stroke-width: 0 !important;",
  65. " stroke: #fff !important;",
  66. " display: none;",
  67. "}"
  68. ].join("\n");
  69. if (typeof GM_addStyle != "undefined") {
  70. GM_addStyle(css);
  71. } else if (typeof PRO_addStyle != "undefined") {
  72. PRO_addStyle(css);
  73. } else if (typeof addStyle != "undefined") {
  74. addStyle(css);
  75. } else {
  76. var node = document.createElement("style");
  77. node.type = "text/css";
  78. node.appendChild(document.createTextNode(css));
  79. var heads = document.getElementsByTagName("head");
  80. if (heads.length > 0) {
  81. heads[0].appendChild(node);
  82. } else {
  83. // no head yet, stick it whereever
  84. document.documentElement.appendChild(node);
  85. }
  86. }
  87. })();