From c92a28ec80eb7a116761dd04a29416fea2bdb274 Mon Sep 17 00:00:00 2001 From: LemonNexus Date: Wed, 11 Feb 2026 19:16:04 +0000 Subject: [PATCH] fix: description text color in dark mode - Changed description text color from #666666 to #aaaaaa for better visibility - Added explicit color (#aaaaaa) to link label text - Link color remains #4caf50 (green) for both themes --- icon_extractor.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/icon_extractor.py b/icon_extractor.py index 4c15e0e..080a2ea 100644 --- a/icon_extractor.py +++ b/icon_extractor.py @@ -347,16 +347,16 @@ class IconExtractorWindow(QMainWindow): desc_layout.setSpacing(4) desc_line1 = QLabel("Extract the item icons from Entropia Universe cache and convert them to PNG.") - desc_line1.setStyleSheet("color: #666666; font-size: 13px;") + desc_line1.setStyleSheet("color: #aaaaaa; font-size: 13px;") desc_layout.addWidget(desc_line1) desc_line2 = QLabel("You can submit these to ") - desc_line2.setStyleSheet("color: #666666; font-size: 13px;") + desc_line2.setStyleSheet("color: #aaaaaa; font-size: 13px;") desc_line2.setOpenExternalLinks(True) # Clickable link - Entropia Nexus text links to entropianexus.com - link_label = QLabel('Entropia Nexus to help complete the item database.') - link_label.setStyleSheet("font-size: 13px;") + link_label = QLabel('Entropia Nexus to help complete the item database.') + link_label.setStyleSheet("font-size: 13px; color: #aaaaaa;") link_label.setOpenExternalLinks(True) desc_line2_layout = QHBoxLayout()