Very simple style to force a Dark Mode for Ludus.com pages (until they add the option themselves, anyway...).
Ludus Dark Mode by DoraTrix

Details
AuthorDoraTrix
LicenseCC Zero
Categoryludus.com
Created
Updated
Code size536 B
Code checksumf86fc055
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Mostly just works, but some features that use iframes (like the new Dashboard) won't pick up the style.
Source code
/* ==UserStyle==
@name Forge Dark mode - Jun 2024
@namespace github.com/DoraTrix/Ludus-Dark-css
@version 1.0.0
@description Force dark mode on Ludus.com pages
@author Pandora Beatrix
==/UserStyle== */
@-moz-document domain('ludus.com') {
html {
filter: invert(100%) hue-rotate(180deg);
background: black
}
img {
filter: invert(100%) hue-rotate(180deg) !important;
}
video {
filter: invert(100%) hue-rotate(180deg) !important;
}
}