:root {
	--sans-font: Georgia, "Times New Roman", serif;
	--bg: whitesmoke;
	--border: darkslategray;
	--accent-bg: gainsboro;
	--text: black;
	--accent: royalblue;
	--accent-hover: royalblue;
	--marked: mediumpurple;
}


/* Dark theme */
@media (prefers-color-scheme: dark) {
	:root,
	::backdrop {
	color-scheme: dark;
    	--bg: rgb(17, 18, 18);
    	--border: rgb(80, 90, 90);
    	--accent-bg: rgb(35, 35, 36);
    	--text: ghostwhite;
    	--accent: lightskyblue;
    	--accent-hover: lightblue;
    	--marked: gold;
	}
}


body {
	/*the first font needs quotes because the name includes spaces */
	font-family: "Some Rando Font", Georgia, serif;
}