It’s possible to change the color of text/image/element selection with a simple CSS code.

This will override the default background color and text color you see when selecting/highlighting content on your site.

To do this, add the following code to your CSS/SCSS file and adjust the values:

::-moz-selection {
	background: #fdfca3;
	color: #1f1f1f;
}

::selection {
	background: #fdfca3;
	color: #1f1f1f;
}