# Color Presets

Able Pro comes up with 6+ theme colour presets. You can now change the available colour presets by doing the following steps:

Colour Preset files are available in **`src\themes\theme\`** directory.

{% tabs %}
{% tab title="NEXT (TS)" %}

```json
...
├── default.ts
├── theme1.ts
├── ..
├── ..
├── ..
├── theme8.ts
```

{% endtab %}

{% tab title="NEXT (JS)" %}

```json
...
├── default.js
├── theme1.js
├── ..
├── ..
├── ..
├── theme8.js
```

{% endtab %}
{% endtabs %}

Edit & choose your desired preset colour setting in **`src\config`** The file. Change the **`presetColor`** value to `theme1, theme2 to theme6`

{% tabs %}
{% tab title="NEXT (TS)" %}

```javascript
// types
import { ConfigStates } from 'types/config';

// ==============================|| THEME CONSTANT ||============================== //
...
...
// ==============================|| THEME CONFIG ||============================== //

const config: ConfigStates = {
  ...
  presetColor: 'default',
  ...
};

export default config;
```

{% endtab %}

{% tab title="NEXT (JS)" %}

```typescript
// ==============================|| THEME CONSTANT ||============================== //
...
...
// ==============================|| THEME CONFIG ||============================== //

const config = {
  ...
  presetColor: 'default',
  ...
};

export default config;
```

{% endtab %}
{% endtabs %}
