Top-level styles #
https://developer.wordpress.org/block-editor/how-to-guides/themes/theme-json/
{
"version": 1,
"styles": {
"color": {
"text": "var(--wp--preset--color--primary)"
}
}
}body {
color: var( --wp--preset--color--primary );
}Block styles #
{
"version": 1,
"styles": {
"color": {
"text": "var(--wp--preset--color--primary)"
},
"blocks": {
"core/paragraph": {
"color": {
"text": "var(--wp--preset--color--secondary)"
}
},
"core/group": {
"color": {
"text": "var(--wp--preset--color--tertiary)"
}
}
}
}
}Last updated