cannabis ape

Customer
For dark mode I try to change the:
.pairs > dt {
color: hsl(0,0%,4%);
}
To white because as you can see the text is barely visible, didn't see it in the color options alternate, but if I change the .pairs color it shows the same color on the white and dark theme. So how do I specifically change these when it's not in the options?

Cheers
 

Attachments

  • Screenshot 2026-09-05 at 12-46-33 Algemene Forumregels Ondeugend Nederland Forum.png
    Screenshot 2026-09-05 at 12-46-33 Algemene Forumregels Ondeugend Nederland Forum.png
    3.6 KB · Views: 4
Wrap any CSS you want for just dark mode inside of this:

Code:
 .m-colorScheme(dark,
        {
           
    }
    );

So:

Code:
 .m-colorScheme(dark,
        {
        .pairs > dt {
color: hsl(0,0%,4%);
}
 
    }
    );
You can target the light mode as well with the same approach:


Code:
        .m-colorScheme(light,
        {
.pairs > dt {
color: hsl(0,0%,4%);
}
 
    }
    );
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back