Created
October 9, 2018 02:12
-
-
Save richtabor/d1de57fbd219f41427d40e2522941900 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function mytheme_setup_theme_supported_features() { | |
add_theme_support( 'editor-color-palette', array( | |
array( | |
'name' => __( 'strong magenta', 'themeLangDomain' ), | |
'slug' => 'strong-magenta', | |
'color' => '#a156b4', | |
), | |
array( | |
'name' => __( 'light grayish magenta', 'themeLangDomain' ), | |
'slug' => 'light-grayish-magenta', | |
'color' => '#d0a5db', | |
), | |
array( | |
'name' => __( 'very light gray', 'themeLangDomain' ), | |
'slug' => 'very-light-gray', | |
'color' => '#eee', | |
), | |
array( | |
'name' => __( 'very dark gray', 'themeLangDomain' ), | |
'slug' => 'very-dark-gray', | |
'color' => '#444', | |
), | |
) ); | |
} | |
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