From 21cccaf28153579cb8f21c1f4ac13244c3482c24 Mon Sep 17 00:00:00 2001 From: Armin Date: Tue, 14 Jul 2026 01:16:57 +0200 Subject: [PATCH] ui: match spectrum analyzer green to waveform green --- Source/PluginEditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/PluginEditor.cpp b/Source/PluginEditor.cpp index 4b7387f..d637228 100644 --- a/Source/PluginEditor.cpp +++ b/Source/PluginEditor.cpp @@ -291,7 +291,7 @@ void SpectrumAnalyzer::paint(juce::Graphics& g) { juce::Graphics::ScopedSaveState saved(g); g.setOpacity(0.7f); - g.setColour(juce::Colour(0xff00ff66)); + g.setColour(juce::Colour(0xff00ff88)); g.fillRect(bx, by, bw, barH); } }