A little darkness in time for time.is...
// ==UserScript==
// @name time.is/just dark
// @namespace none
// @version 2020.09.09.14.31
// @description A little darkness in time for time.is...
// @author Technical-13
// @match https://time.is/clock
// @match https://time.is/just
// @grant none
// ==/UserScript==
( function() {
'use strict';
var styleSheet = document.createElement( 'style' );
var newStyle = 'body { background-color: #000000; }';
newStyle += 'body, select, input, textarea { color: #555555; }';
newStyle += 'div#mainwrapper { background-color: #000000; }';
newStyle += '#clock0_bg:hover { color: #AAAAAA; }';
styleSheet.append( newStyle );
document.getElementsByTagName( 'head' )[ 0 ].append( styleSheet );
document.getElementById( 'top' ).style.display = 'none';
} )();