Support

Account

Home Forums Feature Requests Colour Picker Reply To: Colour Picker

  • Hi @jayokey

    You should be able to do it by using this code:

    function my_acf_collor_pallete_script() {
        ?>
        <script type="text/javascript">
        (function($){
            
            acf.add_filter('color_picker_args', function( args, $field ){
    
                // do something to args
                args.palettes = ['#5ee8bf', '#2f353e', '#f55e4f']
                
                // return
                return args;
            });
            
        })(jQuery);
        </script>
        <?php
    }
    
    add_action('acf/input/admin_footer', 'my_acf_collor_pallete_script');

    This page should give you more idea about it: https://www.advancedcustomfields.com/resources/adding-custom-javascript-fields/.

    I hope this helps 🙂