/* Pardot lightning main site styles */
/* Site specific styles and overrides */

:root {
	/* To change site-wide colors, replace these variable values.
	 * Other color names can be found in global.css 
	 */

	/* RGB colors
	 * If a variable name ends in `rgb`, then when called it must be enclosed in rgb()
	 * E.g.:
	 *  - rgb(var(--magenta-rgb))       // without opacity
	 *  - rgb(var(--magenta-rgb) / 0.8) // with opacity
	 */

	/* Base text and background colors */
	--text-primary: rgb(var(--blue-darkest-rgb));
	--text-secondary: rgb(var(--blue-darkest-rgb) / 0.83);
	--text-tertiary: rgb(var(--blue-darkest-rgb) / 0.7);
	--background-0-rgb: var(--white-rgb);
	--background-1-rgb: 244 242 237;

	/* Base theme colors (colored backgrounds, buttons, accent color, etc) */
	--color-primary-rgb: var(--blue-darkest-rgb);
	--color-secondary-rgb: var(--magenta-rgb);
	--color-secondary-dark-rgb: var(--magenta-dark-rgb);
}