Set colors according to tags

I am trying to put colors by tags in dbt_project.yml. I have followed the documentation but I’m not able to do it. I try different ways but I don’t know why doesn’t work.

This is and example about my dbt_project.yml

name: 'paas'
version: '0.2.8'
require-dbt-version: "=1.4.6"
config-version: 2

# This setting configures which "profile" dbt uses for this project.
profile: 'athena'

# These configurations specify where dbt should look for different types of files.
# The `model-paths` config, for example, states that models in this project can be
# found in the "models/" directory. You probably won't need to change these!
model-paths: ["models"]
analysis-paths: ["analyses"]
test-paths: ["tests"]
seed-paths: ["seeds"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]

# target-path: "target"  # directory which will store compiled SQL files. DEPRECATED IN dbt-core 1.5.0
clean-targets:         # directories to be removed by `dbt clean`
  - "target"
  - "dbt_packages"

models:
  paas:
    +tags: "HighSensitive"
    +docs:
      node_color: '#000000'