/************************************************************/
/*
/*      Colors CSS
/*
/************************************************************/

/******************************/
/* Text color override
/******************************/
body .has-text-color.has-cement-brown-color 			{ color: var(--wp--preset--color--cement-brown) !important; }
body .has-text-color.has-eclipse-brown-color 			{ color: var(--wp--preset--color--eclipse-brown) !important; }
body .has-text-color.has-brick-red-color 			    { color: var(--wp--preset--color--brick-red) !important; }
body .has-text-color.has-westar-gray-color 			    { color: var(--wp--preset--color--westar-gray) !important; }
body .has-text-color.has-pampas-white-color 			{ color: var(--wp--preset--color--pampas-white) !important; }

body.has-cement-brown-background-color {
    --wp--custom--color--current--bg: var(--wp--preset--color--cement-brown);
    :is(.edit-post-visual-editor, .editor-styles-wrapper)::before { background-color: var(--wp--preset--color--cement-brown) !important; }
}
body.has-eclipse-brown-background-color {
    --wp--custom--color--current--bg: var(--wp--preset--color--eclipse-brown);
    :is(.edit-post-visual-editor, .editor-styles-wrapper)::before { background-color: var(--wp--preset--color--eclipse-brown) !important; }
}
body.has-brick-red-background-color {
    --wp--custom--color--current--bg: var(--wp--preset--color--brick-red);
    :is(.edit-post-visual-editor, .editor-styles-wrapper)::before { background-color: var(--wp--preset--color--brick-red) !important; }
}
body.has-westar-gray-background-color {
    --wp--custom--color--current--bg: var(--wp--preset--color--westar-gray);
    :is(.edit-post-visual-editor, .editor-styles-wrapper)::before { background-color: var(--wp--preset--color--westar-gray) !important; }
}
body.has-pampas-white-background-color {
    --wp--custom--color--current--bg: var(--wp--preset--color--pampas-white);
    :is(.edit-post-visual-editor, .editor-styles-wrapper)::before { background-color: var(--wp--preset--color--pampas-white) !important; }
}

/******************************/
/* BG color adaptation
/******************************/
/* Light (default) */
:is(
    .has-pampas-white-background-color
) {
	color : var(--wp--custom--color--default--text--main);
}

body:is(
	.has-pampas-white-background-color
) {
    &, :is(main > .wp-block-post-content, .edit-post-visual-editor, .editor-styles-wrapper) {
        --wp--custom--color--current--text: var(--wp--custom--color--default--text--main);
    }
}

/* Dark */
:is(
	.has-cement-brown-background-color,
	.has-eclipse-brown-background-color,
	.has-brick-red-background-color,
	.has-westar-gray-background-color
) {
	color : var(--wp--custom--color--default--bg);
}

body:is(
	.has-cement-brown-background-color,
	.has-eclipse-brown-background-color,
	.has-brick-red-background-color,
	.has-westar-gray-background-color
) {
    &, :is(main > .wp-block-post-content, .edit-post-visual-editor, .editor-styles-wrapper) {
        --wp--custom--color--current--text: var(--wp--custom--color--default--bg);
    }
}