diff --git a/src/lib/components/ratio/index.svelte b/src/lib/components/ratio/index.svelte index 8e4a0f3..cc2440d 100644 --- a/src/lib/components/ratio/index.svelte +++ b/src/lib/components/ratio/index.svelte @@ -21,7 +21,7 @@ let alphaWarning = $derived.by(() => { 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.'; + if ($fg.alpha !== 1) return 'This ratio is our best estimate with transparency.'; return null; });