Drawaria Profiles Color Change YouTubeDrawaria

Cambia los colores de los jugdares en drawaria!.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name Drawaria Profiles Color Change YouTubeDrawaria
// @namespace http://tampermonkey.net/
// @version 1.2
// @description Cambia los colores de los jugdares en drawaria!.
// @author YouTubeDrawaria
// @grant GM_addStyle
// @run-at document-start
// @include https://drawaria.online*
// @license MIT
// @icon    https://www.google.com/s2/favicons?sz=64&domain=drawaria.online
// ==/UserScript==

(function() {
let css = "";
if (location.href.startsWith("https://drawaria.online")) {
  css += `

 .playerlist-name-loggedin a {
      color: #fd7e14 !important;
  }

  .playerlist-name a {
      color: #28a745;
  }

  .playerlist-name-self a {
      color: #ffc107 !important;
  }
`;
  //  '<-----Colors list:----->'
  //  '--blue: #007bff;'
  //  '--indigo: #6610f2;'
  //  '--purple: #6f42c1;'
  //  '--pink: #e83e8c;'
  //  '--red: #dc3545;'
  //  '--orange: #fd7e14;'
  //  '--yellow: #ffc107;'
  //  '--green: #28a745;'
  //  '--teal: #20c997;'
  //  '--cyan: #17a2b8;'
  //  '--white: #fff;'
  //  '--gray: #6c757d;'
  //  '--gray-dark: #343a40;'
  //  '--primary: #007bff;'
  //  '--green light: #28a745;'
  //  '--dark: #343a40;'
}
if (typeof GM_addStyle !== "undefined") {
  GM_addStyle(css);
} else {
  let styleNode = document.createElement("style");
  styleNode.appendChild(document.createTextNode(css));
  (document.querySelector("head") || document.documentElement).appendChild(styleNode);
}
})();