/* This file is part of LibreQR, which is distributed under the GNU AGPLv3+ license */

:root {
	@media (prefers-color-scheme: light) {
		--logo: url("themes/libreqr/logo-light.png");
		--text: black;
		--bg: #ffffff; /* Must be a long hexadecimal color */
		--bg-field: white;
		--bg-help: white;
		--bg-textarea: white;
		--textarea-text: black;
		--textarea-placeholder: #868686;
		--border: black;
		--border-hover: black;
		--border-focus: black;
		--border-help: black;
		--border-qr: black;
	}

	@media (prefers-color-scheme: dark) {
		--logo: url("themes/libreqr/logo-dark.png");
		--text: white;
		--bg: #000000; /* Must be a long hexadecimal color */
		--bg-field: #000000;
		--bg-help: #000000;
		--bg-textarea: #000000;
		--textarea-text: white;
		--textarea-placeholder: #bababa;
		--border: white;
		--border-hover: white;
		--border-focus: white;
		--border-help: white;
		--border-qr: white;
	}
}