Skip to content

Fix link readability: replace yellow link color with underlined body text - #128

Merged
Rene-Universiteit-Utrecht merged 3 commits into
mainfrom
copilot/improve-link-readability
Jul 6, 2026
Merged

Fix link readability: replace yellow link color with underlined body text#128
Rene-Universiteit-Utrecht merged 3 commits into
mainfrom
copilot/improve-link-readability

Conversation

Copilot AI commented Jul 6, 2026

Copy link
Copy Markdown

Links inherited the UU primary color (#FFCD00) — bright yellow on white — making them nearly unreadable. This aligns link styling with standard UU branding: same color as body text, underlined.

Changes

  • docs/stylesheets/extra.css — adds two overrides scoped to both default and slate color schemes:
    • Overrides --md-typeset-a-color to use --md-default-fg-color (dark body text) instead of the yellow primary
    • Applies text-decoration: underline to anchor elements
[data-md-color-scheme="default"] .md-typeset,
[data-md-color-scheme="slate"] .md-typeset {
    --md-typeset-a-color: var(--md-default-fg-color);

    & a {
        text-decoration: underline;
    }
}

Copilot AI changed the title [WIP] Improve link readability with updated styling Fix link readability: replace yellow link color with underlined body text Jul 6, 2026

@Rene-Universiteit-Utrecht Rene-Universiteit-Utrecht left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

@Rene-Universiteit-Utrecht
Rene-Universiteit-Utrecht marked this pull request as ready for review July 6, 2026 07:43
@Rene-Universiteit-Utrecht
Rene-Universiteit-Utrecht merged commit d5fb224 into main Jul 6, 2026
2 checks passed
@Rene-Universiteit-Utrecht
Rene-Universiteit-Utrecht deleted the copilot/improve-link-readability branch July 6, 2026 07:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Improve link readability

2 participants