fix: some tooltips not being readable (#5578)

our "budget fusion palette" had the same color for the tooltip
background as the tooltip text
This commit is contained in:
pajlada
2024-08-31 12:42:12 +02:00
committed by GitHub
parent 956186d1a1
commit 03b0e4881f
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ namespace {
dark.setColor(QPalette::Base, QColor("#333"));
dark.setColor(QPalette::AlternateBase, QColor("#444"));
dark.setColor(QPalette::ToolTipBase, Qt::white);
dark.setColor(QPalette::ToolTipText, Qt::white);
dark.setColor(QPalette::ToolTipText, Qt::black);
dark.setColor(QPalette::Dark, QColor(35, 35, 35));
dark.setColor(QPalette::Shadow, QColor(20, 20, 20));
dark.setColor(QPalette::Button, QColor(70, 70, 70));