aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2020-11-17 22:34:00 +0100
committerAlessandro Portale <alessandro.portale@qt.io>2020-11-18 07:41:25 +0000
commit626728609b046f975b910edb8bc00b63d99e5b9f (patch)
tree6a8b4de8c18078537163b21e4d561ab0391be79d
parent931347d5e12043ae7dae68f507e9955167dfb936 (diff)
TextEditor: Define default foreground colors for C_SEARCH_RESULT_ALT1|2
Since the background colors were defined, also the foreground colors need to be defined to make sure that both light and dark schemes which do not define C_SEARCH_RESULT_ALT1|2 have a legible contrast. Change-Id: Ic954852bdc66d3534f664658b914af1a30795a7d Reviewed-by: Eike Ziller <eike.ziller@qt.io>
-rw-r--r--src/plugins/texteditor/fontsettingspage.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/texteditor/fontsettingspage.cpp b/src/plugins/texteditor/fontsettingspage.cpp
index d2b3dd3ae4..42c14549c4 100644
--- a/src/plugins/texteditor/fontsettingspage.cpp
+++ b/src/plugins/texteditor/fontsettingspage.cpp
@@ -299,6 +299,10 @@ QColor FormatDescription::defaultForeground(TextStyle id)
return QColor(Qt::red);
} else if (id == C_AUTOCOMPLETE) {
return QColor(Qt::darkBlue);
+ } else if (id == C_SEARCH_RESULT_ALT1) {
+ return QColor(0x00, 0x00, 0x33);
+ } else if (id == C_SEARCH_RESULT_ALT2) {
+ return QColor(0x33, 0x00, 0x00);
}
return QColor();
}