Lighten color highlighting for storyUrls sections in dark mode.

This commit is contained in:
Jim Miller 2022-05-05 22:27:22 -05:00
parent 63450c65e1
commit 63b1d7ac72

View file

@ -58,7 +58,7 @@ class IniHighlighter(QSyntaxHighlighter):
'knownkeywords':QColor(Qt.blue).lighter(150),
'knownsections':Qt.darkCyan,
'teststories':Qt.cyan,
'storyUrls':Qt.magenta,
'storyUrls':QColor(Qt.magenta).lighter(150),
'comments':Qt.yellow
}
except Exception as e: