A minor styling suggestion while using Posts Stats plugin with Marfa theme in dark mode. Add this snippet to custom CSS (‘Design’ -> ‘Edit CSS’) to fix background of alternate rows in tables.

@media(prefers-color-scheme: dark) {
	tr:nth-child(odd)>td {
	  background: initial;
	}
}

Thanks to Andrew for bringing this to my notice.