Better colors for pianoroll (CSS) (#5953)
Better color for ghost notes and keys after dynamic drawing was added
This commit is contained in:
@@ -150,26 +150,27 @@ PianoRoll {
|
||||
qproperty-noteOpacity: 128;
|
||||
qproperty-noteBorders: true; /* boolean property, set false to have borderless notes */
|
||||
qproperty-selectedNoteColor: rgb( 0, 125, 255 );
|
||||
qproperty-ghostNoteColor: #000000;
|
||||
qproperty-ghostNoteColor: #1e1e1e;
|
||||
qproperty-ghostNoteTextColor: #ffffff;
|
||||
qproperty-ghostNoteOpacity: 50;
|
||||
qproperty-ghostNoteOpacity: 60;
|
||||
qproperty-ghostNoteBorders: true;
|
||||
qproperty-barColor: #4afd85;
|
||||
qproperty-barColor: rgb( 119, 199, 216 );
|
||||
qproperty-markedSemitoneColor: rgba( 0, 255, 200, 60 );
|
||||
qproperty-knifeCutLine: rgba(255, 0, 0, 255);
|
||||
/* Piano keys */
|
||||
qproperty-whiteKeyWidth: 64;
|
||||
qproperty-whiteKeyActiveTextColor: #000;
|
||||
qproperty-whiteKeyActiveTextShadow: rgb( 240, 240, 240 );
|
||||
qproperty-whiteKeyActiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #43e97b, stop:1 #3bcd6c);
|
||||
qproperty-whiteKeyActiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #50b8c3, stop:1 #54c4d2);
|
||||
qproperty-whiteKeyInactiveTextColor: rgb( 128, 128, 128);
|
||||
qproperty-whiteKeyInactiveTextShadow: rgb( 240, 240, 240 );
|
||||
qproperty-whiteKeyInactiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #eeeeee, stop:1 #ffffff);
|
||||
qproperty-whiteKeyInactiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #c5c5c5, stop:1 #f9f9f9);
|
||||
qproperty-whiteKeyDisabledBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #a0a0a0, stop:1 #b0b0b0);
|
||||
qproperty-blackKeyWidth: 48;
|
||||
qproperty-blackKeyActiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #43e97b, stop:1 #3bcd6c);
|
||||
qproperty-blackKeyInactiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #333, stop:1 #000);
|
||||
qproperty-blackKeyActiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #50b8c3, stop:1 #54c4d2);
|
||||
qproperty-blackKeyInactiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #101010, stop:1 #3a3a3a);
|
||||
qproperty-blackKeyDisabledBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #606060, stop:1 #505050);
|
||||
|
||||
/* Grid colors */
|
||||
qproperty-lineColor: rgba( 128, 128, 128, 80 );
|
||||
qproperty-beatLineColor: rgba( 128, 128, 128, 160 );
|
||||
|
||||
@@ -182,9 +182,9 @@ PianoRoll {
|
||||
qproperty-noteOpacity: 165;
|
||||
qproperty-noteBorders: false; /* boolean property, set false to have borderless notes */
|
||||
qproperty-selectedNoteColor: #064d79;
|
||||
qproperty-ghostNoteColor: #000000;
|
||||
qproperty-ghostNoteColor: #1e1e1e;
|
||||
qproperty-ghostNoteTextColor: #ffffff;
|
||||
qproperty-ghostNoteOpacity: 50;
|
||||
qproperty-ghostNoteOpacity: 60;
|
||||
qproperty-ghostNoteBorders: false;
|
||||
qproperty-barColor: #078f3a;
|
||||
qproperty-markedSemitoneColor: rgba(255, 255, 255, 30);
|
||||
@@ -193,15 +193,16 @@ PianoRoll {
|
||||
qproperty-whiteKeyWidth: 64;
|
||||
qproperty-whiteKeyActiveTextColor: #000;
|
||||
qproperty-whiteKeyActiveTextShadow: #fff;
|
||||
qproperty-whiteKeyActiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #43e97b, stop:1 #3bcd6c);
|
||||
qproperty-whiteKeyActiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #3ac467, stop:1 #3dd671);
|
||||
qproperty-whiteKeyInactiveTextColor: #000;
|
||||
qproperty-whiteKeyInactiveTextShadow: #fff;
|
||||
qproperty-whiteKeyInactiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #eeeeee, stop:1 #ffffff);
|
||||
qproperty-whiteKeyInactiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #d6d6d6, stop:1 #e3e3e3);
|
||||
qproperty-whiteKeyDisabledBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #a0a0a0, stop:1 #b0b0b0);
|
||||
qproperty-blackKeyWidth: 48;
|
||||
qproperty-blackKeyActiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #43e97b, stop:1 #3bcd6c);
|
||||
qproperty-blackKeyInactiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #333, stop:1 #000);
|
||||
qproperty-blackKeyActiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #3ac467, stop:1 #3dd671);
|
||||
qproperty-blackKeyInactiveBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #262626, stop:1 #313131);
|
||||
qproperty-blackKeyDisabledBackground: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #606060, stop:1 #505050);
|
||||
|
||||
/* Grid colors */
|
||||
qproperty-lineColor: #292929;
|
||||
qproperty-beatLineColor: #2d6b45;
|
||||
|
||||
Reference in New Issue
Block a user