summary refs log tree commit diff
path: root/src/TopRoomBar.cc
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-04-14 15:13:09 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-04-14 15:13:09 +0300
commit8358720d8ea688d0ce40ac8d5c26f39e86e3dc75 (patch)
treead8a78bd7f27442624d9cdca7242077a9bc01392 /src/TopRoomBar.cc
parentAdd proper struct initialization (diff)
downloadnheko-8358720d8ea688d0ce40ac8d5c26f39e86e3dc75.tar.xz
Use light theme
Diffstat (limited to 'src/TopRoomBar.cc')
-rw-r--r--src/TopRoomBar.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/TopRoomBar.cc b/src/TopRoomBar.cc

index 9e30c499..b35291cb 100644 --- a/src/TopRoomBar.cc +++ b/src/TopRoomBar.cc
@@ -24,7 +24,7 @@ TopRoomBar::TopRoomBar(QWidget *parent) { setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); setMinimumSize(QSize(0, 65)); - setStyleSheet("background-color: #232626; color: #ebebeb;"); + setStyleSheet("background-color: #f8fbfe; color: #171919;"); top_layout_ = new QHBoxLayout(); top_layout_->setSpacing(10); @@ -32,7 +32,8 @@ TopRoomBar::TopRoomBar(QWidget *parent) avatar_ = new Avatar(this); avatar_->setLetter(QChar('?')); - avatar_->setBackgroundColor(QColor("#ebebeb")); + avatar_->setBackgroundColor(QColor("#d6dde3")); + avatar_->setTextColor(QColor("#555459")); avatar_->setSize(35); text_layout_ = new QVBoxLayout(); @@ -49,7 +50,7 @@ TopRoomBar::TopRoomBar(QWidget *parent) text_layout_->addWidget(topic_label_); settings_button_ = new FlatButton(this); - settings_button_->setForegroundColor(QColor("#ebebeb")); + settings_button_->setForegroundColor(QColor("#acc7dc")); settings_button_->setCursor(QCursor(Qt::PointingHandCursor)); settings_button_->setStyleSheet("width: 30px; height: 30px;"); @@ -59,7 +60,7 @@ TopRoomBar::TopRoomBar(QWidget *parent) settings_button_->setIconSize(QSize(16, 16)); search_button_ = new FlatButton(this); - search_button_->setForegroundColor(QColor("#ebebeb")); + search_button_->setForegroundColor(QColor("#acc7dc")); search_button_->setCursor(QCursor(Qt::PointingHandCursor)); search_button_->setStyleSheet("width: 30px; height: 30px;");