From c5bdc78d9e2c218ccebcc451fc1036efa8c40980 Mon Sep 17 00:00:00 2001 From: Steven Nguyen <1477010+stnguyen90@users.noreply.github.com> Date: Fri, 19 Jul 2024 22:02:26 +0000 Subject: [PATCH] fix: update floating action bar shadow color The shadow color had a slight blue to it which was probably left over from before the rebrand. This updates the shadow to the color used in pink. --- src/lib/components/floatingActionBar.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/floatingActionBar.svelte b/src/lib/components/floatingActionBar.svelte index 28b7a8e3b8..9c1159b77e 100644 --- a/src/lib/components/floatingActionBar.svelte +++ b/src/lib/components/floatingActionBar.svelte @@ -28,7 +28,7 @@ :global(.theme-dark) .floating-action-bar { border: 1px solid hsl(var(--color-neutral-85)); background: hsl(var(--color-neutral-90)); - box-shadow: 0px 6px 16px 8px #14141f; + box-shadow: 0px 6px 16px 8px hsl(var(--color-neutral-105)); } :global(.theme-light) .floating-action-bar {