Skip to content

Instantly share code, notes, and snippets.

@MariaJackson1
Last active September 13, 2017 21:04
Show Gist options
  • Select an option

  • Save MariaJackson1/102a59d7c7a941f704fafe76c4f32b59 to your computer and use it in GitHub Desktop.

Select an option

Save MariaJackson1/102a59d7c7a941f704fafe76c4f32b59 to your computer and use it in GitHub Desktop.
GeneratePress
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