Darken Google Spreadsheets and the others
/* ==UserStyle==
@name Dark Google Workplace
@description Darken Google Spreadsheets and the others
@match *://docs.google.com/*
@match *://mail.google.com/*
@match *://script.google.com/*
@match *://console.cloud.google.com/*
@license MIT
@version 0.2
@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;
}
}