This makes it easier to read the docs if you're a dark mode user. It also cleans up the site to be solely the docs.
Nilesoft Docs - Dark mode by ProCoder111YT

Details
AuthorProCoder111YT
LicenseNo License
Categoryhttps://nilesoft.org/docs
Created
Updated
Size1.9 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Nilesoft Docs - Dark mode
@version 20250314.23.22
@namespace ?
@description This makes it easier to read the docs if you're a dark mode gremlin like me. It also cleans up the site to be solely the docs if you want the least amount of clutter when going through it.
==/UserStyle== */
@-moz-document url-prefix("https://nilesoft.org/docs") {
/*Dark Mode*/
html,
body
{
background: #1b1b1b;
color: #FFF;
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6,
.menu-list a,
.content table thead td,
.content table thead th,
.content table th
{
color: #FFF;
}
strong
{
color: #ff9a9a;
}
a
{
color: #8da1f9
}
.menu-list a:hover,
a:hover
{
color: #94ffeb;
}
.notification.is-info
{
background: #4949ff;
}
code,
.notification code,
pre.syntax
{
background: #000;
color: #de333b;
}
.table
{
background: #1b1b1c;
color: #dfdfdf
}
.syntax-keyword
{
color: #B0B0FF
}
.has-text-grey
{
color: #43ff46 !important;
}
pre.language-shell,
pre
{
background: #222;
}
code.language-shell,
pre
{
color: #EEE;
text-shadow: none;
}
span.token.operator
{
color: #ffaa5f;
background: #2220;
}
span.token.function
{
color: #7979ff;
}
span.token.comment
{
color: #3f3;
}
span.token.color,
span.token.numbers
{
color: #ff3d3d;
}
.token.keyword,
.token.boolean
{
color: #4cd5ff;
}
.token.string
{
color: #ff914f;
}
.token.punctuation
{
color: #bababa;
}
}
@-moz-document url-prefix("https://nilesoft.org/docs") {
/*Clean-Up*/
.mt-6,
#gaza-genocide,
#mst-nav,
#mst-footer
{
left: -9999px!important;
position: absolute!important;
top: -9999px!important;
}
}