A simple fast code that invert brightness, for Google Drive Docs/Sheets/Slides.
Google Drive - Dark Mode by 6meikyuu9
Details
Author6meikyuu9
LicenseCC BY-NC-ND 4.0
Categorydrive.google.com
Created
Updated
Size613 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
For me, it's much faster than using Dark Reader add-on, so I prefer making this for sites I usually visit.
You can add websites in the code, though I don't guarantee that it will look good.
Source code
/* ==UserStyle==
@name Google Drive - Dark Mode
@namespace https://drive.google.com
@version 1.0.0
@description A simple code that invert brightness, for Google Drive Docs/Sheets/Slides.
@author Meikyuu
==/UserStyle== */
@-moz-document url-prefix("https://docs.google.com"), url-prefix("https://drive.google.com") {
html {
filter: invert(80%) hue-rotate(180deg);
}
[class="kix-page kix-page-header-clip-enabled docs-page kix-page-paginated docs-page-portrait"] {
background: #cdcdcd!important;}
.kix-appview-editor {
background-color: #e0e0e0;
}
}