Switch to a green theme

Switch to a green theme to better match the default theme.
This commit is contained in:
Michael Gregorius
2023-07-16 15:51:38 +02:00
parent 1b2b42fd1c
commit fbfc5dd895
3 changed files with 5 additions and 6 deletions

View File

@@ -1003,9 +1003,8 @@ lmms--gui--CompressorControlDialog lmms--gui--Knob {
}
lmms--gui--BarModelEditor {
qproperty-backgroundBrush: rgba(30, 40, 51, 255);
qproperty-barBrush: rgba(3, 94, 97, 255);
qproperty-textColor: rgba(14, 192, 198, 255);
qproperty-backgroundBrush: rgba(28, 73, 51, 255);
qproperty-barBrush: rgba(17, 136, 71, 255);
}
/* palette information */

View File

@@ -73,7 +73,7 @@ LadspaMatrixControlDialog::LadspaMatrixControlDialog(LadspaControls * ladspaCont
{
mainLayout->addSpacing(3);
m_stereoLink = new LedCheckBox(tr("Link Channels"), this, QString(), LedCheckBox::Yellow, false);
m_stereoLink = new LedCheckBox(tr("Link Channels"), this, QString(), LedCheckBox::Green, false);
m_stereoLink->setModel(&ladspaControls->m_stereoLinkModel);
mainLayout->addWidget(m_stereoLink, 0, Qt::AlignCenter);
}
@@ -151,7 +151,7 @@ void LadspaMatrixControlDialog::arrangeControls(QWidget * parent, QGridLayout* g
if (i == 0 && ladspaControl->m_link)
{
// TODO Assumes that all processors are equal! Change to more general approach, e.g. map from name to row
LedCheckBox * linkCheckBox = new LedCheckBox("", parent);
LedCheckBox * linkCheckBox = new LedCheckBox("", parent, "", LedCheckBox::Green);
linkCheckBox->setModel(&ladspaControl->m_linkEnabledModel);
linkCheckBox->setToolTip(tr("Link channels"));
gridLayout->addWidget(linkCheckBox, currentRow, linkColumn, Qt::AlignHCenter);

View File

@@ -55,7 +55,7 @@ QWidget * LadspaWidgetFactory::createWidget(LadspaControl * ladspaControl, QWidg
case TOGGLED:
{
LedCheckBox * toggle = new LedCheckBox(
name, parent, QString(), LedCheckBox::Yellow, false);
name, parent, QString(), LedCheckBox::Green, false);
toggle->setModel(ladspaControl->toggledModel());
return toggle;
}