:root {
	--primary-rgb: 232 0 224; /* #e800e0 */
	--primary: rgb(var(--primary-rgb));
	--secondary-rgb: 0 252 255; /* #00fcff */
	--secondary: rgb(var(--secondary-rgb));

	--red: var(--secondary);
	--blue: var(--primary);
	--green: #32a852;

	/*
	--red: #ff5c5c;
	--blue: #5c9eff;
	--green: #32a852;
	*/
}

/*
 * The following classes allow for resolution of dynamic colors!.
 */

.blue {
	--color: var(--blue);
}

.green {
	--color: var(--green);
}

.red {
	--color: var(--red);
}
