I needed to change the color palette, and ended up with a generic "Change the config of the Customizer Color Control".
I've added a new palette to my customizer demo theme.
Clone this repository and include the javascript code:
add_action( 'customize_controls_enqueue_scripts', 'on_customize_controls_enqueue_scripts' );
function on_customize_controls_enqueue_scripts() {
$handle = 'color-control-config';
$src = get_stylesheet_directory_uri() . '/js/customizer-color-control-change-config.js';
$deps = [ 'wp-color-picker' ];
wp_enqueue_script( $handle, $src, $deps , rand());
/**
* The options array. see the Iris Options at http://automattic.github.io/Iris/
*
* @type {Array}
*/
$options = [];
wp_scripts()->add_data( $handle, 'data', sprintf( 'var _ColorControlConfig = %s;', wp_json_encode( $options ) ) );
}$options = [
'palettes' => [
'#000000',
'#ffffff',
'#c32d41',
'#144696',
'#e4e0e0',
'#f4f1f0',
],
];$options = [
'palettes' => [],
];Default is 'hide' => true, i.e. you have to click the button to display it.
$options = [
'hide' => false,
];Change the config of the Customizer Color Control is copyright 2017 Per Soderlind
Change the config of the Customizer Color Control is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version.
Change the config of the Customizer Color Control is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with the Extension. If not, see http://www.gnu.org/licenses/.


