diff --git a/src/components/PalPreview.svelte b/src/components/PalPreview.svelte
index 1fd89fec..0b26325d 100644
--- a/src/components/PalPreview.svelte
+++ b/src/components/PalPreview.svelte
@@ -4,6 +4,7 @@
export let pal: Palette;
export let allowModification: boolean = false;
export let highlightSelected: boolean = false;
+ export let showTags: boolean = false;
import { dealWithFocusEvent } from "../lib/utils";
@@ -18,25 +19,34 @@
on:click={() => focusStore.clearColors()}
>
{#each pal.colors as color, idx}
- {#if allowModification}
-
- {:else}
-
+ {#if allowModification}
+
+ {:else}
+
+ {/if}
+ {#if showTags}
+
+ {#each pal.colorSemantics[idx].tags as tag}
+ {tag}
+ {/each}
+
+ {/if}
+
{/each}
diff --git a/src/content-modules/Browse.svelte b/src/content-modules/Browse.svelte
index 5b6e2f2b..172d5348 100644
--- a/src/content-modules/Browse.svelte
+++ b/src/content-modules/Browse.svelte
@@ -205,7 +205,9 @@