From f8792fa157d3b38ef40ae450524b804e47f43996 Mon Sep 17 00:00:00 2001 From: Ryan Atkinson Date: Wed, 1 May 2024 18:35:20 -0600 Subject: [PATCH] fix: update moss color variable usage --- .changeset/cyan-tomatoes-own.md | 5 +++++ src/lib/Alert.svelte | 4 ++-- src/lib/Github_Logo.svelte | 2 +- src/lib/Spider.svelte | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 .changeset/cyan-tomatoes-own.md diff --git a/.changeset/cyan-tomatoes-own.md b/.changeset/cyan-tomatoes-own.md new file mode 100644 index 000000000..4d670412e --- /dev/null +++ b/.changeset/cyan-tomatoes-own.md @@ -0,0 +1,5 @@ +--- +"@ryanatkn/fuz": patch +--- + +fix: update moss color variable usage diff --git a/src/lib/Alert.svelte b/src/lib/Alert.svelte index 6fd44b25a..3cc571456 100644 --- a/src/lib/Alert.svelte +++ b/src/lib/Alert.svelte @@ -62,12 +62,12 @@ .message { min-height: var(--message_min_height); width: 100%; - color: var(--color); + color: var(--text_color); font-weight: 700; font-size: var(--size_md); border-width: var(--border_width_1); border-style: var(--border_style); - border-color: var(--color); + border-color: var(--text_color); display: flex; justify-content: flex-start; /* override button horizontal centering */ align-items: center; diff --git a/src/lib/Github_Logo.svelte b/src/lib/Github_Logo.svelte index 47805cf63..124ca5f80 100644 --- a/src/lib/Github_Logo.svelte +++ b/src/lib/Github_Logo.svelte @@ -8,7 +8,7 @@ const { size = 'var(--space_xl7, 64px)', - fill = 'var(--color, #000)', + fill = 'var(--text_color, #000)', label = 'the GitHub icon, an octocat silhouette', attrs, }: Props = $props(); diff --git a/src/lib/Spider.svelte b/src/lib/Spider.svelte index b4f3c8346..ad5168dbd 100644 --- a/src/lib/Spider.svelte +++ b/src/lib/Spider.svelte @@ -11,7 +11,7 @@ const { size = '100%', - fill = 'var(--color, #000)', + fill = 'var(--text_color, #000)', label = 'a little brown spider', path_attrs, attrs,