|
|
@ -339,17 +339,18 @@ UserSettings::applyTheme() |
|
|
|
/*windowText*/ QColor("#333"), |
|
|
|
/*windowText*/ QColor("#333"), |
|
|
|
/*button*/ QColor("#333"), |
|
|
|
/*button*/ QColor("#333"), |
|
|
|
/*light*/ QColor(0xef, 0xef, 0xef), |
|
|
|
/*light*/ QColor(0xef, 0xef, 0xef), |
|
|
|
/*dark*/ QColor(220, 220, 220), |
|
|
|
/*dark*/ QColor(110, 110, 110), |
|
|
|
/*mid*/ QColor(110, 110, 110), |
|
|
|
/*mid*/ QColor(220, 220, 220), |
|
|
|
/*text*/ QColor("#333"), |
|
|
|
/*text*/ QColor("#333"), |
|
|
|
/*bright_text*/ QColor("#333"), |
|
|
|
/*bright_text*/ QColor("#333"), |
|
|
|
/*base*/ QColor("#eee"), |
|
|
|
/*base*/ QColor("#fff"), |
|
|
|
/*window*/ QColor("white")); |
|
|
|
/*window*/ QColor("white")); |
|
|
|
|
|
|
|
lightActive.setColor(QPalette::AlternateBase, QColor("#eee")); |
|
|
|
lightActive.setColor(QPalette::Highlight, QColor("#38a3d8")); |
|
|
|
lightActive.setColor(QPalette::Highlight, QColor("#38a3d8")); |
|
|
|
lightActive.setColor(QPalette::ToolTipBase, lightActive.base().color()); |
|
|
|
lightActive.setColor(QPalette::ToolTipBase, lightActive.base().color()); |
|
|
|
lightActive.setColor(QPalette::ToolTipText, lightActive.text().color()); |
|
|
|
lightActive.setColor(QPalette::ToolTipText, lightActive.text().color()); |
|
|
|
lightActive.setColor(QPalette::Link, QColor("#0077b5")); |
|
|
|
lightActive.setColor(QPalette::Link, QColor("#0077b5")); |
|
|
|
lightActive.setColor(QPalette::ButtonText, QColor(Qt::gray)); |
|
|
|
lightActive.setColor(QPalette::ButtonText, QColor("#495057")); |
|
|
|
QApplication::setPalette(lightActive); |
|
|
|
QApplication::setPalette(lightActive); |
|
|
|
} else if (this->theme() == "dark") { |
|
|
|
} else if (this->theme() == "dark") { |
|
|
|
stylefile.setFileName(":/styles/styles/nheko-dark.qss"); |
|
|
|
stylefile.setFileName(":/styles/styles/nheko-dark.qss"); |
|
|
@ -357,17 +358,18 @@ UserSettings::applyTheme() |
|
|
|
/*windowText*/ QColor("#caccd1"), |
|
|
|
/*windowText*/ QColor("#caccd1"), |
|
|
|
/*button*/ QColor(0xff, 0xff, 0xff), |
|
|
|
/*button*/ QColor(0xff, 0xff, 0xff), |
|
|
|
/*light*/ QColor("#caccd1"), |
|
|
|
/*light*/ QColor("#caccd1"), |
|
|
|
/*dark*/ QColor("#2d3139"), |
|
|
|
/*dark*/ QColor(110, 110, 110), |
|
|
|
/*mid*/ QColor(110, 110, 110), |
|
|
|
/*mid*/ QColor("#202228"), |
|
|
|
/*text*/ QColor("#caccd1"), |
|
|
|
/*text*/ QColor("#caccd1"), |
|
|
|
/*bright_text*/ QColor(0xff, 0xff, 0xff), |
|
|
|
/*bright_text*/ QColor(0xff, 0xff, 0xff), |
|
|
|
/*base*/ QColor("#2d3139"), |
|
|
|
/*base*/ QColor("#202228"), |
|
|
|
/*window*/ QColor("#202228")); |
|
|
|
/*window*/ QColor("#2d3139")); |
|
|
|
|
|
|
|
darkActive.setColor(QPalette::AlternateBase, QColor("#2d3139")); |
|
|
|
darkActive.setColor(QPalette::Highlight, QColor("#38a3d8")); |
|
|
|
darkActive.setColor(QPalette::Highlight, QColor("#38a3d8")); |
|
|
|
darkActive.setColor(QPalette::ToolTipBase, darkActive.base().color()); |
|
|
|
darkActive.setColor(QPalette::ToolTipBase, darkActive.base().color()); |
|
|
|
darkActive.setColor(QPalette::ToolTipText, darkActive.text().color()); |
|
|
|
darkActive.setColor(QPalette::ToolTipText, darkActive.text().color()); |
|
|
|
darkActive.setColor(QPalette::Link, QColor("#38a3d8")); |
|
|
|
darkActive.setColor(QPalette::Link, QColor("#38a3d8")); |
|
|
|
darkActive.setColor(QPalette::ButtonText, QColor(0x90, 0x90, 0x90)); |
|
|
|
darkActive.setColor(QPalette::ButtonText, "#727274"); |
|
|
|
QApplication::setPalette(darkActive); |
|
|
|
QApplication::setPalette(darkActive); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
stylefile.setFileName(":/styles/styles/system.qss"); |
|
|
|
stylefile.setFileName(":/styles/styles/system.qss"); |
|
|
|