Skip to content

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

No more grey text! Solid black/white depending on browser color scheme

Notes

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;
    }
}
}

Reviews

No reviews yet.