🎨Accent Background Color

Digital Nomad supports customizing the Accent Background Color of website blocks (Subscribe CTA banners, tags, buttons, progress bar, etc.).

The theme provides CSS variable specifically designed to control the Accent Background Color:

--accent-background-color: #F5F5F5;

To customize:

  1. Access the Settings > Code Injection from the admin menu.

  2. Click Open

  3. In the provided space, specify the desired Accent Background Color using CSS variable. For example:

    <style>
         :root {
              --accent-background-color: #F5F5F5;
         }
    </style>

  4. Click Save

Last updated