Skip to content

Commit

Permalink
Update dark theme icon color
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOneRing committed Aug 30, 2024
1 parent 8d0cf57 commit e98e364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resources/resources.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ QIcon OCC::Resources::getCoreIcon(const QString &iconName)
if (cached.isNull()) {
const QString iconPath = QStringLiteral(":/client/resources/core/%1.svg").arg(iconName);
Q_ASSERT(QFileInfo::exists(iconPath));
const QString color = isUsingDarkTheme() ? QStringLiteral("#838FA1") : QStringLiteral("#435671");
const QString color = isUsingDarkTheme() ? QStringLiteral("#ADACAB") : QStringLiteral("#435671");
QByteArray data = Template::renderTemplateFromFile(iconPath, {{QStringLiteral("color"), color}}).toUtf8();
QBuffer buffer(&data);
QImageReader iconReader(&buffer, "svg");
Expand Down

0 comments on commit e98e364

Please sign in to comment.