/**
 * Custom property definitions for tokens referenced across blocks/style.css
 * files but never actually defined anywhere in either theme (confirmed by
 * grep across the full codebase before writing this file — Phase 0 of the
 * FSE/theme.json migration plan). Each was already used with a sensible
 * inline fallback (e.g. var(--color-highlight, currentColor)), so nothing
 * was visibly broken — this file makes the intended values explicit and
 * wires them to the real theme.json brand palette, rather than leaving
 * every usage silently relying on its own fallback.
 *
 * --color-highlight is used by formattedHeadline() in
 * wp-dilate-theme/inc/helper-ui-elements.php for the {curly brace} emphasis
 * span mechanism shared by every block's headline text — defining it here
 * (not per-block) because it is a parent-theme-wide mechanism, not
 * block-scoped styling. Chosen as the Red brand color (theme.json palette
 * slug "red", #EE1C25) as the most reasonable accent candidate among the 5
 * SOPYC colors — flag for design review if a different color is intended.
 */

:root {
    --color-highlight: var(--wp--preset--color--red);
    --color-border: var(--wp--preset--color--light-blue);
    --color-surface: var(--wp--preset--color--white);
    --color-surface-alt: var(--wp--preset--color--light-beige);
    --color-midnight: var(--wp--preset--color--midnight);
}
