gppro_picker_defaults
The color picker (Iris) loads a small palette of colors below the area to choose a color. These defaults can be changed to match a particular style or removed altogether.
Change or remove the default colors loaded at the bottom of the color picker.
function my_picker_change( $values ) { $values = array( '#ff99e1', '#e95a22', '#c0e7d9', '#15726e', '#862200', '#496400' ); return $values; } add_filter( 'gppro_picker_defaults', 'my_picker_change' );