@charset "UTF-8";
/**
 * H2A High Contrast — starter for themes
 *
 * Copy to your theme as: assets/styles/h2a-high-contrast.css
 *
 * Choose ONE approach:
 * - FSE themes: remap --wp--preset--color--* under body.high-contrast (section 1)
 * - Classic themes: use --h2a-hc-* + component selectors (section 2)
 */
/* ==========================================================================
   1. FSE — remap WordPress preset colors from theme.json
   ========================================================================== */
/*
body.high-contrast {
	--wp--preset--color--base: #000000;
	--wp--preset--color--contrast: #ffffff;
	--wp--preset--color--primary: #ffff00;
	--wp--preset--color--secondary: #ffffff;
	--wp--preset--color--tertiary: #cccccc;

	background-color: var(--wp--preset--color--base);
	color: var(--wp--preset--color--contrast);
}

body.high-contrast .mon-composant-specifique {
	border-color: var(--wp--preset--color--primary);
}
*/
/* ==========================================================================
   2. Classic — plugin tokens + theme class selectors
   ========================================================================== */
:root {
  --h2a-hc-bg: #000000;
  --h2a-hc-fg: #ffffff;
  --h2a-hc-link: #ffff00;
  --h2a-hc-border: #ffffff;
  --h2a-hc-input-bg: #222222;
  --h2a-hc-media-border: #ffff00;
  --h2a-hc-focus: #00ffff;
}

body.high-contrast {
  --wp--preset--color--primary-3: #01A7E7;
  --wp--preset--color--tertiary: #FCFE30;
}

/* Add selectors for cards, footer, forms, WooCommerce blocks, etc. *//*# sourceMappingURL=h2a-high-contrast.css.map */