A dark mode for the renpy docs website
Renpy Docs Dark Mode by golfinq
Details
Authorgolfinq
LicenseNo License
Categoryrenpy
Created
Updated
Size1.1 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Some elements outside the documentation might be missing, only is made for the documentation
Source code
/* ==UserStyle==
@name Renpy Docs Dark Mode
@namespace renpy.org
@version 1.0.0
@description A dark mode for the renpy docs website
@author golfinq
==/UserStyle== */
@-moz-document domain("renpy.org") {
body {
background-color: #222;
color: #7882a0;
}
pre {
background-color: #352934;
border: 1px solid #000;
color: #c19ebe;
}
.highlight .s1,
.highlight .s2,
.highlight .se {
color: #fc3a3d !important;
}
.highlight .k {
color: #d8a2a3 !important;
}
.highlight .na {
color: #869ae8 !important;
}
.highlight .bp {
color: #FFFFFF !important;
}
.navbar-default {
background-image: linear-gradient(to bottom, #262626 0, #000 100%);
}
.highlight .mi,
.highlight .mf {
color: #FFFFFF !important;
}
.bs-sidenav {
background-color: #262626;
text-shadow: None;
}
.bs-sidenav .nav > li > a:hover,
.bs-sidenav .nav > li > a:focus {
background-color: #000;
}
code {
background-color: #000;
}
#sidebar {
margin-left: -45px;
}
}