Index: plugins/syndication/feedwidget.cpp =================================================================== --- plugins/syndication/feedwidget.cpp +++ plugins/syndication/feedwidget.cpp @@ -19,9 +19,12 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ +#include +#include #include #include #include +#include #include @@ -39,8 +42,8 @@ { QString FeedWidget::item_template = i18n("\ \ - \ -
\ + \ +
\ Title: %1
\ Date: %2
\
\ @@ -213,7 +216,9 @@ m_item_view->setHtml(item_template .arg(item->title()) .arg(QLocale().toString(QDateTime::fromTime_t(item->datePublished()), QLocale::ShortFormat)) - .arg(item->description()), QUrl(feed->feedData()->link())); + .arg(item->description()) + .arg(QApplication::palette().text().color().name(QColor::NameFormat::HexRgb)) + , QUrl(feed->feedData()->link())); } } }