Last active
September 13, 2017 21:01
-
-
Save MariaJackson1/e6764aad8a4374b2bdea3a27392e66bb to your computer and use it in GitHub Desktop.
Custom Color Palettes — Generate Press
This file contains hidden or 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
| add_filter( 'generate_default_color_palettes', 'tu_custom_color_palettes' ); | |
| function tu_custom_color_palettes( $palettes ) { | |
| $palettes = array( | |
| '#ffffff', | |
| '#f8f8f8', | |
| '#B6B6B8', | |
| '#010203', | |
| '#C30DBD', | |
| '#ffffff', | |
| '#ffffff', | |
| '#ffffff', | |
| ); | |
| return $palettes; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment