Color Preset

Datta Abble come up with 6+ theme color presets. You can now change the available color presets by doing the following steps:

Edit & choose your desire preset colour setting in src\config the file. Change the customColorvalue to preset-1, preset-2 to preset-8

src/config.ts
...
// types
import { DefaultConfigProps } from 'types/config';
...

const config: DefaultConfigProps = {
    ...
    customColor: 'preset-1', // preset-1 , preset-2 upto preset-8
    ...
};

export default config;

Last updated