dark mode for selenium.dev
selenium.dev - dark by s-light
Details
Authors-light
LicenseNo License
Categoryhttps://www.selenium.dev/
Created
Updated
Size776 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 selenium.dev - Dez. 2023
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("selenium.dev"),
domain("seleniumhq.org") {
* {
--main: hsl(45, 90%, 90%);
--main_highlight: hsl(45, 100%, 50%);
--bg: hsl(270, 100%, 8%);
}
html,
body {
color: var(--main);
background-color: var(--bg);
}
.lightBackground {
background: hsla(0, 0%, 100%, .05);
}
.toc .toggleNav .navGroup .navGroupCategoryTitle {
color: var(--main_highlight);
}
.toc .toggleNav ul li a {
color: var(--main);
}
.onPageNav a {
color: var(--main);
}
}