Dark Google Workplace

Darken Google Spreadsheets and the others

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

/* ==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;
    }
}