simonculus / KS Dark Theme

// ==UserScript==
// @name         KS Dark Theme
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  A simple dark theme for Kunskapsporten.
// @author       Simonculus
// @match        https://ks.kunskapsporten.se/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}
    addGlobalStyle('body, #wrap, #contentWrapper {color: white !important;background-color: #262626 !important;}');
    addGlobalStyle('.ksBlock {background-color: #333333 !important;}');
    addGlobalStyle('a {color: white !important;}');
})();