Skip to content

Instantly share code, notes, and snippets.

@alexwh
Created December 9, 2017 16:50
Show Gist options
  • Save alexwh/a69955a8de80a9e1fde758325ccf841c to your computer and use it in GitHub Desktop.
Save alexwh/a69955a8de80a9e1fde758325ccf841c to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.youtube.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var style = '--yt-swatch-primary:rgb(35,35,35); --yt-swatch-primary-darker:rgb(32,32,32); --yt-swatch-text:rgb(255,255,255); --yt-swatch-important-text:rgb(255,255,255); --yt-swatch-input-text:rgba(255,255,255,1); --yt-swatch-textbox-bg:rgba(19,19,19,1); --yt-swatch-logo-override:rgb(255,255,255); --yt-swatch-icon-color:rgba(136,136,136,1);';
document.body.setAttribute('dark', 'true');
document.getElementById('masthead').setAttribute('style', style);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment