Skip to content

Instantly share code, notes, and snippets.

@mrdavefoy
Created October 20, 2017 11:41
Show Gist options
  • Save mrdavefoy/999bfa8e7eacd65bdd8785fd39c6210c to your computer and use it in GitHub Desktop.
Save mrdavefoy/999bfa8e7eacd65bdd8785fd39c6210c to your computer and use it in GitHub Desktop.
Color Picker Code—Astra
add_filter( 'astra_color_palletes', 'wpb_astra_color_palettes' );
function wpb_astra_color_palettes() {
$color_palettes = array(
'#ffffff',
'#f6f7f8',
'#222222',
'#666666',
'#000000',
'#000000',
'#000000',
'#000000',
);
return $color_palettes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment