diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-04-14 15:13:09 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-04-14 15:13:09 +0300 |
commit | 8358720d8ea688d0ce40ac8d5c26f39e86e3dc75 (patch) | |
tree | ad8a78bd7f27442624d9cdca7242077a9bc01392 /src/UserInfoWidget.cc | |
parent | Add proper struct initialization (diff) | |
download | nheko-8358720d8ea688d0ce40ac8d5c26f39e86e3dc75.tar.xz |
Use light theme
Diffstat (limited to 'src/UserInfoWidget.cc')
-rw-r--r-- | src/UserInfoWidget.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/UserInfoWidget.cc b/src/UserInfoWidget.cc index 2b83fc4a..9a50145d 100644 --- a/src/UserInfoWidget.cc +++ b/src/UserInfoWidget.cc @@ -42,7 +42,7 @@ UserInfoWidget::UserInfoWidget(QWidget *parent) displayNameLabel_ = new QLabel(this); displayNameLabel_->setStyleSheet( "padding: 0 9px;" - "color: #ebebeb;" + "color: #171919;" "font-size: 14px;" "font-weight: 500;" "margin-bottom: -10px;"); @@ -51,7 +51,7 @@ UserInfoWidget::UserInfoWidget(QWidget *parent) userIdLabel_ = new QLabel(this); userIdLabel_->setStyleSheet( "padding: 0 8px 8px 8px;" - "color: #d4d2d1;" + "color: #555459;" "font-size: 13px"); userIdLabel_->setAlignment(Qt::AlignLeading | Qt::AlignLeft | Qt::AlignVCenter); @@ -66,7 +66,7 @@ UserInfoWidget::UserInfoWidget(QWidget *parent) buttonLayout_ = new QHBoxLayout(); logoutButton_ = new FlatButton(this); - logoutButton_->setForegroundColor(QColor("#ebebeb")); + logoutButton_->setForegroundColor(QColor("#555459")); logoutButton_->setCursor(QCursor(Qt::PointingHandCursor)); logoutButton_->setStyleSheet("width: 30px; height: 30px;"); |