Skip to content

Instantly share code, notes, and snippets.

@sokollondon
Last active June 19, 2024 06:31
Show Gist options
  • Save sokollondon/095293919846ab53d1694f93b61d0182 to your computer and use it in GitHub Desktop.
Save sokollondon/095293919846ab53d1694f93b61d0182 to your computer and use it in GitHub Desktop.
Клавогонки. Тёмная тема https://klavogonki.ru/
// ==UserScript==
// @name Клавогонки. Тёмная тема
// @version 0.1
// @description Тёмная тема оформления для сайта https://klavogonki.ru/ в режиме гонки
// @author sokollondon
// @match https://klavogonki.ru/gamelist/*
// @match https://klavogonki.ru/g/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=klavogonki.ru
// @grant none
// @license MIT
// @namespace https://gist.github.com/sokollondon/095293919846ab53d1694f93b61d0182
// @updateURL https://gist.githubusercontent.com/sokollondon/095293919846ab53d1694f93b61d0182/raw/KlavogonkiDarkMode.js
// @downloadURL https://gist.githubusercontent.com/sokollondon/095293919846ab53d1694f93b61d0182/raw/KlavogonkiDarkMode.js
// ==/UserScript==
(function() {
let style = `
body{background: #2B2B2B;}
#head, #params, #invite{opacity: 0.1;}
#head:hover, #params:hover, #invite:hover{opacity: 0.3;}
.ng-binding{color: #dadada;}
.gray_timer .ng-binding {color: #999;}
#players-count-lbl span {text-shadow: 1px 1px 5px #fff;}
`;
let st = document.createElement("style");
st.innerText = style;
document.head.appendChild(st);
})();
@sokollondon
Copy link
Author

image
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment