Skip to content

Instantly share code, notes, and snippets.

@Seele0oO
Last active November 15, 2024 03:30
Show Gist options
  • Save Seele0oO/b9d92ad4114c1dda5e7a493b93c155e1 to your computer and use it in GitHub Desktop.
Save Seele0oO/b9d92ad4114c1dda5e7a493b93c155e1 to your computer and use it in GitHub Desktop.
time.is_dark
// ==UserScript==
// @name time.is black style
// @namespace https://gist.github.com/
// @version 20241115.11
// @description black ver time.is, idea from t.me/GBTBBR
// @author AlPt
// @match https://time.is/
// @icon https://www.google.com/s2/favicons?sz=64&domain=time.is
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
document.getElementById('clock0_bg').style.color = 'white';
document.body.style.backgroundColor = 'black';
document.getElementById('mainwrapper').style.backgroundColor = 'black';
document.getElementById('top').style.display='none';
document.getElementById('clock0_bg').click();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment