Datta
Datta Able - React
Datta Able - React
  • Documentation
  • Pre-requisites
  • Quick Start
  • Folder Structure
  • Internationalization
  • Axios API Calls
  • Routing
  • Project Configuration
  • Color Preset
  • Branding
  • Theme Layouts
  • How to
    • Dashboard as First Page
  • Theme/Style Configuration
  • Integration
    • Seed
    • Comparison
  • Dependencies
  • Support
  • Changelog
Powered by GitBook
On this page

Color Preset

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

PreviousProject ConfigurationNextBranding

Last updated 1 month ago

CtrlK

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;
src/config.js
...

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

export default config;