Changes bright parts of the Desmos graphing calculator (eg. the graph itself) to be dark, while still maintaining correct-looking colors.
Desmos Dark Mode by spidunno
Details
Authorspidunno
LicenseNo License
Categorydesmos
Created
Updated
Size688 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Desmos Dark Mode
@version 20220205.19.44
@namespace userstyles.world/user/spidunno
@description Changes bright parts of the Desmos graphing calculator (eg. the graph itself) to be dark, while still maintaining correct-looking colors.
@author spidunno
@license No License
==/UserStyle== */
@-moz-document domain("desmos.com") {
body {
filter: invert() hue-rotate(180deg) saturate(3.5);
}
.dcg-header ,.dcg-scrollable, .dcg-user-bar {
filter: invert() hue-rotate(180deg) saturate(calc(1/3.5));
}
.modal.dcg-state-modals {
filter: saturate(calc(1/3));
}
.dcg-btn.dcg-btn-green.pull-right.dcg-action-save {
color: black;
}
}