Guest User

Untitled

a guest
Oct 21st, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. add_filter( 'generate_default_color_palettes', 'tu_custom_color_palettes' );
  2. function tu_custom_color_palettes( $palettes ) {
  3. $palettes = array(
  4. '#000000',
  5. '#FFFFFF',
  6. '#CCDAD1',
  7. '#9CAEA9',
  8. '#788585',
  9. '#6F6866',
  10. '#38302E',
  11. '#AAAAAA',
  12. );
  13.  
  14. return $palettes;
  15. }
Add Comment
Please, Sign In to add comment