@@ -208,11 +208,11 @@ void CanvasPlot::resized()
208
208
209
209
void CanvasPlot::lookAndFeelChanged ()
210
210
{
211
- plt.setBackgroundColour (findColour (ThemeColours::componentParentBackground ));
212
- plt.setGridColour (findColour (ThemeColours::defaultText ));
213
- plt.setAxisColour (findColour (ThemeColours::defaultText ));
211
+ plt.setBackgroundColour (findColour (ThemeColours::componentBackground ));
212
+ plt.setGridColour (findColour (ThemeColours::controlPanelText). withAlpha ( 0 . 5f ));
213
+ plt.setAxisColour (findColour (ThemeColours::controlPanelText ));
214
214
215
- chanColors[0 ] = findColour (ThemeColours::controlPanelText). withAlpha ( 0 . 6f );
215
+ chanColors[0 ] = findColour (ThemeColours::defaultText );
216
216
plt.plot (xvalues, currPower[0 ], chanColors[0 ], 1 .0f );
217
217
}
218
218
@@ -409,7 +409,7 @@ void CanvasPlot::drawSpectrogram(std::vector<float> chanData)
409
409
410
410
void CanvasPlot::paint (Graphics& g)
411
411
{
412
- g.fillAll (findColour (ThemeColours::componentBackground ));
412
+ g.fillAll (findColour (ThemeColours::componentParentBackground ));
413
413
414
414
if (displayType == POWER_SPECTRUM)
415
415
{
@@ -460,7 +460,7 @@ void CanvasPlot::paint(Graphics& g)
460
460
int ticklabelWidth = 60 ;
461
461
int tickLabelHeight = 20 ;
462
462
463
- g.setFont (FontOptions (" Inter" , " Regular" , 14 .0f ));
463
+ g.setFont (FontOptions (" Inter" , " Regular" , 12 .0f ));
464
464
465
465
for (int k = 0 ; k <= 10 ; k++)
466
466
{
0 commit comments