Hyperlink color clashes with Catppuccin palette throughout UI #43

Closed
opened 2026-02-08 17:06:21 +00:00 by forbes · 0 comments
Owner

Description

Hyperlinks across multiple preferences pages and dialogs render in default blue, which clashes with the Catppuccin Mocha dark palette. This is a global stylesheet issue affecting any QLabel or QTextBrowser with <a> tags.

Affected Locations

  • General > General: "Addon Manager" link
  • General > Document: "Show format documentation" link
  • General > Help: help source links
  • Any other dialog with clickable links

Proposed Fix

Set the application-wide link color via QPalette::Link and QPalette::LinkVisited in the theme initialization code:

  • Link: Lavender #b4befe
  • Link hover: Sapphire #74c7ec

Or add to the Catppuccin stylesheet:

QLabel a, QTextBrowser a, QGroupBox a {
    color: #b4befe; /* Catppuccin Lavender */
}

Component: Stylesheet (resources/preferences/)

## Description Hyperlinks across multiple preferences pages and dialogs render in default blue, which clashes with the Catppuccin Mocha dark palette. This is a global stylesheet issue affecting any `QLabel` or `QTextBrowser` with `<a>` tags. ## Affected Locations - General > General: "Addon Manager" link - General > Document: "Show format documentation" link - General > Help: help source links - Any other dialog with clickable links ## Proposed Fix Set the application-wide link color via `QPalette::Link` and `QPalette::LinkVisited` in the theme initialization code: - Link: Lavender `#b4befe` - Link hover: Sapphire `#74c7ec` Or add to the Catppuccin stylesheet: ```css QLabel a, QTextBrowser a, QGroupBox a { color: #b4befe; /* Catppuccin Lavender */ } ``` **Component:** Stylesheet (`resources/preferences/`)
forbes added the bugtheme labels 2026-02-08 17:06:21 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kindred/create#43