Skip to content

Instantly share code, notes, and snippets.

@paullacey78
Last active May 18, 2020 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paullacey78/cd01b0ca39a603eefd0c0c03041b49e3 to your computer and use it in GitHub Desktop.
Save paullacey78/cd01b0ca39a603eefd0c0c03041b49e3 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'generate_default_color_palettes', 'tu_custom_color_palettes' );
function tu_custom_color_palettes( $palettes ) {
$palettes = array(
'#000000',
'#FFFFFF',
'#F1C40F',
'#E74C3C',
'#1ABC9C',
'#1e72bd',
'#8E44AD',
'#00CC77',
);
return $palettes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment