Skip to content

Commit

Permalink
[Equalizer] Bright analyzer colors, opacity increased (#4772)
Browse files Browse the repository at this point in the history
* [Equalizer] Bright analyzer colors, opacity incr

Brightened spectrum analyzer colors and increased opacity a tad to make more visible

* Fixed RGB Value

* Update EqControlsDialog.cpp

* Fixed color change

* Changed colors again

* Fixed colors, now brighter and bluer

* Ok, its actually bright now lol
  • Loading branch information
0xf0xx0 authored and RebeccaDeField committed Apr 6, 2019
1 parent 032c324 commit 82e3ba7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/Eq/EqControlsDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ EqControlsDialog::EqControlsDialog( EqControls *controls ) :

EqSpectrumView * inSpec = new EqSpectrumView( &controls->m_inFftBands, this );
inSpec->move( 26, 17 );
inSpec->setColor( QColor( 54, 45, 142, 150 ) );
inSpec->setColor( QColor( 77, 101, 242, 150 ) );

EqSpectrumView * outSpec = new EqSpectrumView( &controls->m_outFftBands, this );
outSpec->setColor( QColor( 9, 166, 156, 150 ) );
outSpec->setColor( QColor( 0, 255, 239, 150 ) );
outSpec->move( 26, 17 );

m_parameterWidget = new EqParameterWidget( this , controls );
Expand Down

0 comments on commit 82e3ba7

Please sign in to comment.