To follow up on my previous post, it turns out that WordPress 5.8 is implementing a new mechanism to configure the editor. You can read more about it here: Global Settings & Styles (theme.json). After studying this for a bit, I was able to apply my desired palette colors by adding this code to my child theme’s top-level menu. The code goes in a theme.json file. In the meantime, I going to have to disable the block editor plugin unless there is a fix posted for it at some point. It was a nice plugin to use so I hope it gets fixed.
{
"version": 1,
"settings": {
"color": {
"custom": true,
"palette": [
{
"name": "White",
"slug": "white",
"color": "#000000"
},
{
"name": "Black",
"slug": "black",
"color": "#FFFFFF"
},
{
"name": "Fern Green",
"slug": "fern-green",
"color": "#718355"
},
{
"name": "Moss Green",
"slug": "moss-green",
"color": "#87986A"
},
{
"name": "Asparagus",
"slug": "asparagus",
"color": "#97A97C"
},
{
"name": "Laurel Green",
"slug": "laurel-green",
"color": "#B5C99A"
},
{
"name": "Tea Green",
"slug": "tea-green",
"color": "#CFE1B9"
},
{
"name": "Beige",
"slug": "beige",
"color": "#E9F5DB"
}
]
}
}
}
-
This reply was modified 3 years, 2 months ago by kwbrayton.