Fixes the dark mode for app.roll20.net / Savage Worlds games
Roll20 Savage Worlds dark mode fix by thecalcaholic
Details
Authorthecalcaholic
LicenseMIT
Categoryroll20
Created
Updated
Size700 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 Lemme fix your dark mode
@version 20220420.18.14
@namespace userstyles.world/user/thecalcaholic
@description Fixes the dark mode for app.roll20.net (Savage Worlds games)
@author thecalcaholic
@license MIT
==/UserStyle== */
@-moz-document domain("app.roll20.net") {
:root {
--dark-primary-text: #E6E6E6;
--dark-secondary-text: #B3B3B3;
}
#tab-content, #tab-content h5, #tab-content h4, #tab-content h3, #tab-content h2, #tab-content h1 {
color: var(--dark-primary-text);
}
#tab-content label {
color: var(--dark-secondary-text);
}
.charsheet {
background-image: none;
background-color: #422;
}
}