Add more color to Calendar events

This commit is contained in:
Vyn 2024-04-21 11:18:00 +02:00
parent d27cf89eee
commit 01037b1717
2 changed files with 15 additions and 3 deletions

View file

@ -243,5 +243,8 @@ QVariant Backend::getFiles()
QString Backend::getTagColor(QString tag)
{
if (!tagsConfig.contains(tag)) {
return "#c6d0f5"; // TODO: currently hard coded but should match the default Text color.
}
return tagsConfig[tag];
}