Auch in WordPress kann man den RTE bis zum nicht mehr aushalten konfigurieren, hier ein Snippet mit welchem Ihr die Farbpalette für die Default-Farben setzen könnt:
function myplugin_options( $init ) {
$custom_colours = '
"230066", "",
"7F24FF", "",
"02DEFF", "",
"4180FF", "",
"00CC99", "",
"FF5533", "",
"FEA41E", "",
"BCBCBC", ""
';
$init[ 'textcolor_map' ] = '[' . $custom_colours . ']';
$init[ 'textcolor_rows' ] = 2;
return $init;
}
add_filter( 'tiny_mce_before_init', 'myplugin_options' );
Da ich hier etwas mehr als die übliche 1 Zeile brauche setze ich im die textcolor_rows auf 2.