Basic dark mode theme for next-episode website, removed the top right side banner images as well since I couldnt be bothered to figure out a way to make them be bright, took me all of 5 minutes or so, but I'm happy with it.
Next episode dark mode by kevgm
Details
Authorkevgm
LicenseNo License
Categorynext-episode.net
Created
Updated
Size799 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Please leave a comment if you have any feedback!
Source code
/* ==UserStyle==
@name Next-episode dark mode
@namespace next-episode.net
@version 1.0.0
@description Basic dark mode userstyle
@author kevgm
==/UserStyle== */
@-moz-document domain("next-episode.net") {
* {
color: #c48113 !important;
background: #202020 !important;
border-color: #a8a8a8 !important;
text-shadow: 2px 2px 5px #555 !important;
}
a,
a * {
color: #fff !important;
text-decoration: none !important;
}
a:visited,
a:visited * {
color: #3f7495 !important;
}
a:hover,
a:hover * {
color: #74cddb !important;
}
img[src*="//static.next-episode.net/img/header/logo_left_2019_nnn-min.png"] {
display: none;
}
img[src*="//static.next-episode.net/img/header/logo_right_2019_nnn-min.png"] {
display: none;
}
}