/* Design tokens
---------------------------------------------------------------------------- */

/*
 * Border radius scale.
 *
 * Patterns reference these as var:preset|border-radius|<size> in their block
 * markup. WordPress has no border-radius preset origin, so it never generates
 * these custom properties from theme.json and they have to be declared in CSS.
 *
 * Values follow the radii already hard-coded in the core-*.css files.
 */
:root {
	--wp--preset--border-radius--xs: 3px;
	--wp--preset--border-radius--sm: 5px;
	--wp--preset--border-radius--md: 10px;
	--wp--preset--border-radius--lg: 20px;
	--wp--preset--border-radius--full: 1000px;
}
