/* Style sheet for scarabaeus.org, with background image */

/* Import Scarabaeus defaults */
@import url("scarabaeus.css");

/* Default background image */
body {
	background-image: url("img/bode13l.png");
}

/* Night/dark mode background image */
@media (prefers-color-scheme: dark) {
	a{} /* workaround for joe syntax coloring bug */
	body {
		background-image: url("img/bode13d.png");
	}
}

