(function($) { function resetColorsToDefault() { // Define default values for your color settings const defaultColors = { 'background_color': '#ffffff', 'boutique_designer_shop_heading_color': '#121212', 'boutique_designer_shop_text_color': '#121212', 'boutique_designer_shop_second_color': '#f4eee9', 'boutique_designer_shop_footer_bg': '#121212', 'boutique_designer_shop_post_bg': '#ffffff', }; // Iterate over each setting and set it to its default value for (let settingId in defaultColors) { wp.customize(settingId).set(defaultColors[settingId]); } // Optionally refresh the preview wp.customize.previewer.refresh(); } // Attach reset function to global scope window.resetColorsToDefault = resetColorsToDefault; $(document).ready(function() { $('.color-reset-btn').val('RESET'); // This adds the 'RESET' text inside the button }); })(jQuery);