No more grey text! Solid black/white depending on browser color scheme
lemmy higher contrast by Artoria2e5
Details
AuthorArtoria2e5
LicenseCC Zero
Categorylemmy.world
Created
Updated
Size456 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Will be made useless if https://github.com/LemmyNet/lemmy-ui/issues/1728 gets fixed. Feel free to add other sites.
Source code
/* ==UserStyle==
@name lemmy higher contrast
@version 20230701.09.03
@namespace ?
==/UserStyle== */
@-moz-document domain("lemmy.world") {
@media (prefers-color-scheme: light) {
.text-body {
color: black!important
}
body,
.card-body {
color: black;
}
}
@media (prefers-color-scheme: dark) {
.text-body {
color: white!important
}
body,
.card-body {
color: white;
}
}
}