How would I style some table rows as light red, dark red, light green, and dark green?

In CSS, all things are possible:

div.tr-group:nth-child(odd) {
	filter: brightness(85%);
}

Tune as needed.

Note:
This only works as long as a color is applied. If no color is applied, there is nothing to adjust the brightness of.
Screenshot 2023-12-12 at 9.21.21 AM