Open up some gui elements to theming (#7314)

* Theming for current step note

* Theming for EnvelopeGraph

* Theming for LfoGraph

* curStepNoteColor - don't break old themes

* EnvelopeGraph - don't break old themes

* LfoGraph - don't break old themea

* currentStepNoteColor
This commit is contained in:
Oskar Wallgren
2024-11-30 14:54:45 +01:00
committed by GitHub
parent e311832ffb
commit 3562bbed3c
9 changed files with 67 additions and 19 deletions

View File

@@ -148,6 +148,7 @@ lmms--gui--PianoRoll {
qproperty-noteModeColor: rgb( 255, 255, 255 );
qproperty-noteColor: rgb( 119, 199, 216 );
qproperty-stepNoteColor: #9b1313;
qproperty-currentStepNoteColor: rgb(245, 3, 139);
qproperty-noteTextColor: rgb( 255, 255, 255 );
qproperty-noteOpacity: 128;
qproperty-noteBorders: true; /* boolean property, set false to have borderless notes */
@@ -796,6 +797,21 @@ lmms--gui--SubWindow > QPushButton:hover{
border-radius: 2px;
}
/* Instrument */
/* Envelope graph */
lmms--gui--EnvelopeGraph {
qproperty-noAmountColor: rgb(96, 91, 96);
qproperty-fullAmountColor: rgb(0, 255, 128);
qproperty-markerFillColor: rgb(153, 175, 255);
qproperty-markerOutlineColor: rgb(0, 0, 0);
}
/* LFO graph */
lmms--gui--LfoGraph {
qproperty-noAmountColor: rgb(96, 91, 96);
qproperty-fullAmountColor: rgb(0, 255, 128);
}
/* Plugins */

View File

@@ -179,6 +179,7 @@ lmms--gui--PianoRoll {
qproperty-noteModeColor: #0bd556;
qproperty-noteColor: #0bd556;
qproperty-stepNoteColor: #9b1313;
qproperty-currentStepNoteColor: rgb(245, 3, 139);
qproperty-noteTextColor: #ffffff;
qproperty-noteOpacity: 165;
qproperty-noteBorders: false; /* boolean property, set false to have borderless notes */
@@ -835,6 +836,21 @@ lmms--gui--SubWindow > QPushButton:hover{
border-radius: 2px;
}
/* Instrument */
/* Envelope graph */
lmms--gui--EnvelopeGraph {
qproperty-noAmountColor: rgb(96, 91, 96);
qproperty-fullAmountColor: rgb(0, 255, 128);
qproperty-markerFillColor: rgb(153, 175, 255);
qproperty-markerOutlineColor: rgb(0, 0, 0);
}
/* LFO graph */
lmms--gui--LfoGraph {
qproperty-noAmountColor: rgb(96, 91, 96);
qproperty-fullAmountColor: rgb(0, 255, 128);
}
/* Plugins */