Highlighting

This is the setting for creating highlighting for cards in the column

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.

Example:

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