Home Forums WoodMart support forum Embed or Shortcode the color picker. Reply To: Embed or Shortcode the color picker.

#341227

Artem Temos
Keymaster

Sorry, but we were talking about the primary color only. You can do this by adding the following CSS code

body {
    --wd-primary-color: red;
}

Note that you add it using PHP and replace the red color with the value from ACF field like that:

body {
    --wd-primary-color: <?php the_field('custom_color'); ?>;
}