Google Calendar Dark Night Mode Theme - currently undergoing build
// ==UserScript==
// @name Google Calendar Dark Night Mode Theme
// @namespace english
// @description Google Calendar Dark Night Mode Theme - currently undergoing build
// @include http*://*calendar.google.com*
// @version 2.2
// @run-at document-end
// @grant GM_addStyle
// ==/UserScript==
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = ' ';
document.getElementsByTagName('head')[0].appendChild(style);
/*
OLD CODE - messy - google keeps updating things
*/