style(a11y): meet WCAG AA on --text-faint
Bump --text-faint from #746a58 (4.01:1 on cream surfaces — fails AA) to #665c4b (4.94:1 — passes AA for small text). Preserves the "quieter than --text-dim" semantic the variable was named for. Lifts ~33 sites into compliance with one diff. Also keeps the BoardPostCard per-selector swap to --text-dim that shipped with the original /board fix; can revert to --text-faint in a follow-up now that the variable itself is accessible.
This commit is contained in:
parent
6a6f036877
commit
03dfdab20e
2 changed files with 14 additions and 6 deletions
|
|
@ -178,7 +178,8 @@ const slackLinks = computed(() => {
|
|||
font-size: 10px;
|
||||
letter-spacing: 0.1em;
|
||||
text-transform: uppercase;
|
||||
color: var(--text-faint);
|
||||
/* --text-faint fails WCAG AA (4.01:1) on the cream card bg */
|
||||
color: var(--text-dim);
|
||||
}
|
||||
|
||||
.post-actions {
|
||||
|
|
@ -233,7 +234,8 @@ const slackLinks = computed(() => {
|
|||
font-size: 10px;
|
||||
letter-spacing: 0.1em;
|
||||
text-transform: uppercase;
|
||||
color: var(--text-faint);
|
||||
/* --text-faint fails WCAG AA (4.01:1) on the cream card bg */
|
||||
color: var(--text-dim);
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
.block-text {
|
||||
|
|
@ -244,7 +246,8 @@ const slackLinks = computed(() => {
|
|||
|
||||
.post-note {
|
||||
font-size: 11px;
|
||||
color: var(--text-faint);
|
||||
/* --text-faint fails WCAG AA (4.01:1) on the cream card bg */
|
||||
color: var(--text-dim);
|
||||
font-style: italic;
|
||||
margin: 8px 0;
|
||||
white-space: pre-wrap;
|
||||
|
|
@ -293,7 +296,8 @@ const slackLinks = computed(() => {
|
|||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 10px;
|
||||
color: var(--text-faint);
|
||||
/* --text-faint fails WCAG AA (4.01:1) on the cream card bg */
|
||||
color: var(--text-dim);
|
||||
font-family: "Commit Mono", monospace;
|
||||
}
|
||||
.author-name {
|
||||
|
|
@ -308,7 +312,8 @@ const slackLinks = computed(() => {
|
|||
}
|
||||
.slack-handle {
|
||||
font-size: 11px;
|
||||
color: var(--text-faint);
|
||||
/* --text-faint fails WCAG AA (4.01:1) on the cream card bg */
|
||||
color: var(--text-dim);
|
||||
font-family: "Commit Mono", monospace;
|
||||
background: transparent;
|
||||
border: none;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue