Skip to content

Instantly share code, notes, and snippets.

@billerickson
Last active January 9, 2019 22:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/5a804256dbdc3e8e0a6223d646041d9d to your computer and use it in GitHub Desktop.
Save billerickson/5a804256dbdc3e8e0a6223d646041d9d to your computer and use it in GitHub Desktop.
<?php
// -- Disable Custom Colors
add_theme_support( 'disable-custom-colors' );
// -- Editor Color Palette
add_theme_support( 'editor-color-palette', array(
array(
'name' => __( 'Blue', 'ea_genesis_child' ),
'slug' => 'blue',
'color' => '#59BACC',
),
array(
'name' => __( 'Green', 'ea_genesis_child' ),
'slug' => 'green',
'color' => '#58AD69',
),
array(
'name' => __( 'Orange', 'ea_genesis_child' ),
'slug' => 'orange',
'color' => '#FFBC49',
),
array(
'name' => __( 'Red', 'ea_genesis_child' ),
'slug' => 'red',
'color' => '#E2574C',
),
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment