[SOLVED] Extension CSS Guide

Is there an extension CSS guide?

I’d like to be able to detect whether dark mode is active, that way the extension text is readable.

Is there a list of available CSS classes?

Dark mode: OFF

image

Dark mode: ON
image

Found a related post.

I’ll try that. Just set a background color on the extension since there doesn’t seem to be a way to detect dark mode.

This worked well enough. I just set a white medium-transparent background on the body.

body {
	font: 12px arial, sans-serif;
	background-color: #FFFFFFAA;
}

image