🎨Colors
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:
Access the Settings > Code Injection from the admin menu.
Click Open
In the provided space, specify the desired background-colors using the appropriate CSS variable. For example:
<style> :root { --alternate-color: #000; } </style>
Click Save
Background Color
Digital supports customizing Background Color of the website.
To customize:
Access the Settings > Code Injection from the admin menu.
Click Open
In the provided space, specify the desired background-colors using the appropriate CSS variable. For example:
<style> :root { --main-background-color: #000; } </style>
Click Save
Colors in dark mode
Digital allows to change Alternative color, Background Color, Accent Color in dark mode.
To customize:
Access the Settings > Code Injection from the admin menu.
Click Open
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>
Click Save
Last updated