Improve message readability on different themes

This commit is contained in:
Nicolas Werner 2022-04-01 17:11:50 +02:00
parent 41ee260a5d
commit 15c7630e10
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9
2 changed files with 4 additions and 2 deletions

View file

@ -531,7 +531,8 @@ utils::markdownToHtml(const QString &text, bool rainbowify)
// get correct color for char index
// Use colors as described here:
// https://shark.comfsm.fm/~dleeling/cis/hsl_rainbow.html
auto color = QColor::fromHslF((charIdx - 1.0) / textLen * (5. / 6.), 0.9, 0.5);
// auto color = QColor::fromHslF((charIdx - 1.0) / textLen * (5. / 6.), 0.9, 0.5);
auto color = QColor::fromHslF((charIdx - 1.0) / textLen * (2.), 0.9, 0.999);
// format color for HTML
auto colorString = color.name(QColor::NameFormat::HexRgb);
// create HTML element for current char

View file

@ -316,7 +316,8 @@ InputBar::send()
command(name, args);
}
} else {
message(text());
// message(text());
message(text(), MarkdownOverride::ON, true);
}
if (!wasEdit) {