summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-07-21 17:44:29 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-07-21 17:44:29 +0200
commitf401ed16ace26dbe397fa2dce59fbb2f455a35f7 (patch)
tree0f879655e02b584ae85da7a1811559847007c0df /src
parentFix some media not being cached properly (diff)
downloadnheko-f401ed16ace26dbe397fa2dce59fbb2f455a35f7.tar.xz
Tweak rainbows slightly
Diffstat (limited to 'src')
-rw-r--r--src/Utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Utils.cpp b/src/Utils.cpp

index 8d5ae4a9..484b45cf 100644 --- a/src/Utils.cpp +++ b/src/Utils.cpp
@@ -556,7 +556,7 @@ utils::markdownToHtml(const QString &text, bool rainbowify) // Use colors as described here: // https://shark.comfsm.fm/~dleeling/cis/hsl_rainbow.html auto color = - QColor::fromHslF((charIdx - 1.0) / textLen * (5. / 6.), 1.0, 0.5); + QColor::fromHslF((charIdx - 1.0) / textLen * (5. / 6.), 0.9, 0.5); // format color for HTML auto colorString = color.name(QColor::NameFormat::HexRgb); // create HTML element for current char