diff --git a/exampleSite/content/cont/taxonomy.en.md b/exampleSite/content/cont/taxonomy.en.md
index c00f00eba2..40c09d3127 100644
--- a/exampleSite/content/cont/taxonomy.en.md
+++ b/exampleSite/content/cont/taxonomy.en.md
@@ -59,5 +59,7 @@ If you define [custom taxonomies](https://gohugo.io/content-management/taxonomie
|-----------------------|-----------------|-------------|
| **page** | _<empty>_ | Mandatory reference to the page. |
| **taxonomy** | _<empty>_ | The plural name of the taxonomy to display as used in your frontmatter. |
-| **class** | _<empty>_ | Additional CSS classes set on the outermost generated HTML element. |
+| **class** | _<empty>_ | Additional CSS classes set on the outermost generated HTML element.
If set to `tags` you will get the visuals for displaying the _tags_ taxonomy, otherwise it will be a simple list of links as for the _categories_ taxonomy. |
+| **style** | `primary` | The style scheme used if **class** is `tags`.
- by severity: `info`, `note`, `tip`, `warning`
- by brand color: `primary`, `secondary`, `accent`
- by color: `blue`, `green`, `grey`, `orange`, `red`
- by special color: `default`, `transparent`, `code` |
+| **color** | see notes | The [CSS color value](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value) to be used if **class** is `tags`. If not set, the chosen color depends on the **style**. Any given value will overwrite the default.
- for severity styles: a nice matching color for the severity
- for all other styles: the corresponding color |
| **icon** | _<empty>_ | An optional [Font Awesome icon name]({{%relref "shortcodes/icon#finding-an-icon" %}}) set to the left of the list. |
diff --git a/layouts/partials/tags.html b/layouts/partials/tags.html
index a46a3856c8..c18ae2a2f2 100644
--- a/layouts/partials/tags.html
+++ b/layouts/partials/tags.html
@@ -1,4 +1,3 @@
-
{{- partial "term-list.html" (dict
"page" .
"taxonomy" "tags"
diff --git a/layouts/partials/term-list.html b/layouts/partials/term-list.html
index aeade17aee..2efaa632b1 100644
--- a/layouts/partials/term-list.html
+++ b/layouts/partials/term-list.html
@@ -1,6 +1,11 @@
{{- $page := .page }}
{{- $taxonomy := .taxonomy }}
{{- $class := .class }}
+{{- $color := .color | default "" }}
+{{- $style := .style | default "" }}
+{{- if and (not $style) (eq (len $style) 0) }}
+ {{- $color = .color | default "var(--INTERNAL-TAG-BG-color)" }}
+{{- end }}
{{- $icon := .icon | default "" }}
{{- $icon = trim $icon " " }}
{{- if and $icon (not (findRE ".*?\\bfa-\\w.*?" $icon)) }}
@@ -24,7 +29,7 @@
{{- end }}
{{- end }}
{{- with $term_pages }}
-