Inverse dark and light color in css
Cuelang SImply Dark - déc. 2023 by jeremie-lesage
Details
Authorjeremie-lesage
LicenseNo License
Categorycuelang.org
Created
Updated
Size653 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 Cuelang SImply Dark - déc. 2023
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Inverse dark and light color in css
@author Jérémie Lesage
==/UserStyle== */
@-moz-document domain("cuelang.org") {
body {
background-color: var(--dark);
color: var(--light);
}
.td-sidebar-nav__section-title a,
a {
color: var(--light);
}
.td-toc #TableOfContents a,
.td-sidebar-nav .td-sidebar-link__page {
color: var(--info);
}
.td-content pre {
background-color: var(--gray-dark);
color: #f8f9fa;
}
}