diff options
Diffstat (limited to 'src/settingswidget.cpp')
-rw-r--r-- | src/settingswidget.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/settingswidget.cpp b/src/settingswidget.cpp index dc8cda3..d3c438f 100644 --- a/src/settingswidget.cpp +++ b/src/settingswidget.cpp @@ -168,8 +168,10 @@ void SettingsWidget::applyThemeQuirks() //little quirks if(QString::compare(ui->themeComboBox->currentText(),"dark",Qt::CaseInsensitive)==0) { + ui->bottomLine->setStyleSheet("background-color: rgb(5, 97, 98);"); ui->label_7->setStyleSheet("color:#c2c5d1;padding: 0px 8px 0px 8px;background:transparent;"); }else{ + ui->bottomLine->setStyleSheet("background-color: rgb(74, 223, 131);"); ui->label_7->setStyleSheet("color:#1e1f21;padding: 0px 8px 0px 8px;background:transparent;"); } } |