From 55e5b88b73821e550ebda18080c8f1073a56024a Mon Sep 17 00:00:00 2001 From: James Stuckey Weber Date: Mon, 27 Jan 2025 12:07:30 -0500 Subject: [PATCH] Update src/lib/components/ratio/index.svelte --- src/lib/components/ratio/index.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/ratio/index.svelte b/src/lib/components/ratio/index.svelte index 703087a..afe3dfa 100644 --- a/src/lib/components/ratio/index.svelte +++ b/src/lib/components/ratio/index.svelte @@ -22,7 +22,7 @@ if ($bg.alpha !== 1) return 'Alpha is not considered when the background is not opaque.'; if ($fg.alpha !== 1) - return 'This ratio is our best estimate with transparency.'; + return 'This ratio is our best estimate given the specified foreground alpha value.'; return null; });