:root {
	/* Colors */
	--accent: #3d3dfc;
	--background: #bebef8;
	--lightAccent: #9898f5; /** header*/
	--lighterAccent: #afaff9;  /** backgroud ?*/
	--dark: #3d3dfc; /** lignes*/
	--darker: #ffff8b; /** polices titres*/ 
	--slate: #005a6d; /** polices normales*/

	--white: #fff;
	--black: #152030;

	--ink: var(--slate);
	--paper: var(--background);

	/**
	 * These fonts are broken out into two separate variables from a previous iteration. I left
	 * it in because it's nice to be able to split out the heading and body fonts.
	 */
	--accentFont: 'BBB Manifont Grotesk', sans-serif; /* titres */
	--primaryFont: 'DM Sans', sans-serif;             /* texte courant */
	--codeFont: 'Fira Code', monospace;
}

