Switch around dark theme colors again (after looking at some screenshots)

This commit is contained in:
Nicolas Werner 2020-01-23 21:28:17 +01:00
parent 8389102f6c
commit cbd428c584
1 changed files with 3 additions and 3 deletions

View File

@ -35,12 +35,12 @@ TimelineViewManager::updateColorPalette()
QPalette darkActive(/*windowText*/ QColor("#caccd1"),
/*button*/ QColor("#caccd1"),
/*light*/ QColor(),
/*dark*/ QColor("#202228"),
/*dark*/ QColor("#2d3139"),
/*mid*/ QColor(),
/*text*/ QColor("#caccd1"),
/*bright_text*/ QColor(),
/*base*/ QColor("#2d3139"),
/*window*/ QColor("#2d3139"));
/*base*/ QColor("#202228"),
/*window*/ QColor("#202228"));
darkActive.setColor(QPalette::Highlight, QColor("#e7e7e9"));
view->rootContext()->setContextProperty("currentActivePalette", darkActive);
view->rootContext()->setContextProperty("currentInactivePalette", darkActive);