> For the complete documentation index, see [llms.txt](https://nteamdev.gitbook.io/nteam-development/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://nteamdev.gitbook.io/nteam-development/scripts/job-dashboard/esx/presets.md).

# Presets

How to change preset in script

1. Navigate to **ndev\_jobdashboard/nui/presets**
2. Copy files of desired preset and paste them in **ndev\_jobdashboard/nui**

If you want do make own preset

1. Navigate to **ndev\_jobdashboard/nui/style.css**
2. Edit following lines to achive your prefered style
3.

````
```css
````

````
:root {
    --back-color: #101010;
    --primary-color: #00CCFF;
    --secondary-color: #fff;
    --box-color: #00CCFF;
    --box-text: #fff;
    --jobname-color: #fff;
    --scnd-text-color: #fff;

    --hire-button-color: #101010;
    --box-color-hire: #00CCFF;
    --hire-button-text: #fff;

    --promote-button-color: #101010;
    --box-color-promote: #00CCFF;

    --fire-button-color:#101010;
    --box-color-fire: #00CCFF;
    
    --table-text: #cfcece;

    --modal-back:#101010;
    --modal-secondry:#101010c6;
    --modal-button:#101010;
    --modal-button-text:#fff;
    --modal-text:#fff;
  }

```
````
