Dark Google Workplace

Darken Google Spreadsheets and the others

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Advertisement:

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

Advertisement:

/* ==UserStyle==
@name        Dark Google Workplace
@description Darken Google Spreadsheets and the others
@match       *://docs.google.com/*
@match       *://mail.google.com/*
@match       *://script.google.com/*
@exclude     *://docs.google.com/presentation/*
@license     MIT
@version     0.3
@namespace   djshigel
==/UserStyle== */

@media (prefers-color-scheme: dark) {
    html {
        filter: invert() hue-rotate(180deg) contrast(0.85);
    }
 
    div[jsdata="deferred-i2"] {
        filter: invert() hue-rotate(180deg) contrast(0.85);
    }
 
    iframe, img, svg:has(image) {
        filter: contrast(1.05) hue-rotate(180deg) invert();
    }
 
    mat-card {
        box-shadow: 0 0 1px 1px #aaa !important;
    }
}