fix(a11y): raise circle description contrast to WCAG AA

The .circle-desc text used --text-faint, which failed WCAG AA on the
selected/hover tile surfaces (4.01:1 light / 4.31:1 dark). Promote to
--text-dim to clear 4.5:1 against all tile states.
This commit is contained in:
Jennie Robinson Faber 2026-04-19 17:23:19 +01:00
parent 19c77a3ab6
commit e7ad076d6a

View file

@ -77,7 +77,7 @@ defineEmits(['update:modelValue'])
.circle-desc { .circle-desc {
font-size: 11px; font-size: 11px;
color: var(--text-faint); color: var(--text-dim);
line-height: 1.5; line-height: 1.5;
display: block; display: block;
} }