# Highlighting

### Highlighting

Contains an array of objects where each object is a highlighting rule for the card.\
Each highlighting can contain matching on priorities and/or keywords. \
The first rule that is true for a card will be the rule that decides on what color it will have.

| Key        | Type   | Description                            |
| ---------- | ------ | -------------------------------------- |
| color      | string | Color in hex color code                |
| priorities | array  | Array of strings with priority numbers |
| keywords   | array  | Array of strings with keywords         |

Example:

```
[
    {
        "color": "#ED3B3F",
        "priorities": [
            "3",
            "4"
        ],
        "keywords": [
            "keyword",
            "this is an example with red highlighting"
        ]
    }
]
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.navigaglobal.com/naviga-wire/1.2.0/admin-guide/configuration/highlighting.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
