Gartic.io pinky pinky mode

pink mode in gartic.io!

// ==UserScript==
// @name         Gartic.io pinky pinky mode
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  pink mode in gartic.io! 
// @author       iiJavad
// @match        https://gartic.io/*
// @grant        none
// ==/UserScript==

(function() {
  'use strict';
  var colors = {
    primary: '#ff69b4', // صورتی روشن
    secondary: '#ff69b4', // صورتی  روشن
    accent: '#ff69b4', // صورتی  روشن
    background: '#ff69b4', // صورتی  روشن
    text: '#ff69b4', // صورتی 
    darkText: '#ff69b4', // صورتی 
    border: '#ff69b4', // صورتی  
    hover: '#ff69b4', //صورتی 
  };

  var css = `
    /* تغییر رنگ پس‌زمینه */
    body {
      background-color: ${colors.background} !important;
    }

    /* تغییر رنگ متن */
    body, .player-name, .score, .timer {
      color: ${colors.text} !important;
    }

    /* تغییر رنگ دکمه‌ها */
    button {
      background-color: ${colors.accent} !important;
      border-color: ${colors.border} !important;
      color: ${colors.text} !important;
    }

    /* تغییر رنگ لینک‌ها */
    a {
      color: ${colors.hover} !important;
    }

    /* تغییر رنگ عناصر دیگر */
    .canvas-container {
      background-color: ${colors.primary} !important;
      border-color: ${colors.border} !important;
    }

    .toolbar {
      background-color: ${colors.secondary} !important;
    }

    .toolbar button {
      background-color: ${colors.accent} !important;
      border-color: ${colors.border} !important;
    }

    /* تغییر رنگ عناصر دیگر */
    .player-list li {
      background-color: ${colors.primary} !important;
    }

    .player-list li:hover {
      background-color: ${colors.hover} !important;
    }

    .chat-message {
      background-color: ${colors.accent} !important;
    }

    .chat-message:hover {
      background-color: ${colors.hover} !important;
    }
  `;
  var style = document.createElement('style');
  style.type = 'text/css';
  style.innerHTML = css;
  document.head.appendChild(style);
})();