Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save theJasonJones/958499b698b8cf77c191c416c63a7b0c to your computer and use it in GitHub Desktop.
Save theJasonJones/958499b698b8cf77c191c416c63a7b0c to your computer and use it in GitHub Desktop.
Add theme support and set a color palette for all blocks
<?php
function mytheme_setup_theme_supported_features() {
add_theme_support( 'editor-color-palette',
'#556270',
'#4ECDC4',
'#C7F464',
'#FF6B6B',
'#C44D58'
);
}
add_action( 'after_setup_theme', 'mytheme_setup_theme_supported_features' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment