Digital
DemoSupport
  • 👋Introduction
  • 🆕Changelog
  • 🏁GETTING STARTED
    • 🔽Uploading a Theme
  • 📜MAIN TEMPLATES
    • 📰Post Template
    • 📄Page Template
    • 📄Categories (Tags) Template
    • 🧑‍🎨Authors Template
    • ♾️Archive (All posts) Template
    • 🌟Project Template
    • 🌠Projects (All projects) Template
    • 📬Contact Page
  • ⚙️CUSTOM SETTINGS
    • ™️Logos
    • 🧭Header Type
    • 🎨Colors
    • 🧮Border Radius
    • 📢Subscribe CTA Text and Subtext
    • 🏠Homepage Layout
  • 🤝Membership
    • 🎬Setting Up
    • ⬇️Sign In Page
    • 🆙Sign Up Page
    • 🔀Subscribe Page
    • 👤Account Page
    • 💸Membership Page
  • 🛠️OTHER SETTINGS
    • ⏬Submenus
    • 📸Add Your Social Link (Icon)
    • 💬Comments
    • ⛔Disable animations
  • ☑️TERMS & CONDITIONS
    • 🔁Refund Policy
Powered by GitBook
On this page
  • Alternative color
  • To customize:
  • Background Color
  • To customize:
  • Colors in dark mode
  • To customize:
  1. CUSTOM SETTINGS

Colors

PreviousHeader TypeNextBorder Radius

Last updated 9 months ago

Alternative color

Digital allows to add alternative color. Alternate color set background-color for input, textarea, submenu, subscribe banner, tags, tier card, post content cards, post header, etc.

To customize:

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

  2. Click Open

  3. In the provided space, specify the desired background-colors using the appropriate CSS variable. For example:

    <style>
        :root {
            --alternate-color: #000;
        }
    </style>

  4. Click Save

If the variable --alternate-color is not defined, the default color is #f5f5f5

Background Color

Digital supports customizing Background Color of the website.

To customize:

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

  2. Click Open

  3. In the provided space, specify the desired background-colors using the appropriate CSS variable. For example:

    <style>
        :root {
            --main-background-color: #000;
        }
    </style>

  4. Click Save

If the variable --main-background-color is not defined, the default color is#ffffff

Colors in dark mode

Digital allows to change Alternative color, Background Color, Accent Color in dark mode.

To customize:

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

  2. Click Open

  3. In the provided space, specify the desired background-colors using the appropriate CSS variable. For example:

    <style>
        :root {
            --main-color--dark-mode: #FFFFFF;
            --alternate-color--dark-mode: #483C6C;
            --main-background-color--dark-mode: #261651;  
        }
    </style>

  4. Click Save

If the variable --main-color--dark-mode is not defined, the default color is#f5f5f5

If the variable --alternate-color--dark-mode is not defined, the default color is#3d3d3d

If the variable --main-background-color--dark-mode is not defined, the default color is#1d1d1f

⚙️
🎨