I'm struggling to limit the colors availible when using the 'textcolor' plugin.
This is my current config in appsettings.json, which shows the textcolor button, but it shows all colors:
"Umbraco": {
"CMS": {
"RichTextEditor": {
"Commands": [
{
"alias": "forecolor",
"name": "Change Color",
"mode": "Selection"
}
],
"Plugins": [
"textcolor"
],
"CustomConfig": {
"textcolor_map": "[ \"000000\", \"Black\", \"e31c79\", \"Pink\" ]"
}
}
}
}