Skip to content
On this page

Color Strategy

The digimarket kit includes a pre-defined color system for both light and dark modes. We believe that it's best to set colors inside presets rather than using configuration options. Trying to customize each element and component color through a complex configuration can be cumbersome and often disrupts the harmony and user experience.

Instead, we recommend defining a new preset for each theme if you need to change colors. While it is possible to modify some pre-defined colors like success, info, primary, and accent colors (although not recommended), overriding every color of every element through the configuration is not possible.

TIP

Consider colors as more than just UI and branding elements. Colors play a crucial role in the overall user experience (UX).

TIP

Try to use a wide range of colors in your theme instead of just using primary and accent colors. This enhances visual diversity and aesthetic appeal.

TIP

try to redefine a new preset instead of editing default colors. the default preset designed generally for E-Commerce platforms.

Customize Pre-defined Colors

You can customize some colors of theme by overriding tailwindcss config options.

For example:

ts
module.exports = {
  theme: {
    colors: {
        primary: "#2E9"  
    }
  }
}

Released under the MIT License.