BogaudioModules

BogaudioModules for VCV Rack
Log | Files | Refs | README | LICENSE

commit dd0c8eb63d6455483b17368b1616848d3e4e8394
parent 137b225415e389067bc945b7094f5212d15b39da
Author: Matt Demanett <matt@demanett.net>
Date:   Mon,  4 Dec 2017 19:46:03 -0500

Analyzer: better graph colors.

Diffstat:
Msrc/Analyzer.cpp | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/Analyzer.cpp b/src/Analyzer.cpp @@ -236,9 +236,9 @@ struct AnalyzerDisplay : TransparentWidget { const NVGcolor _axisColor = nvgRGBA(0xff, 0xff, 0xff, 0x70); const NVGcolor _textColor = nvgRGBA(0xff, 0xff, 0xff, 0xc0); const NVGcolor _channelAColor = nvgRGBA(0x00, 0xff, 0x00, 0xd0); - const NVGcolor _channelBColor = nvgRGBA(0xff, 0x00, 0x00, 0xd0); - const NVGcolor _channelCColor = nvgRGBA(0x00, 0x00, 0xff, 0xd0); - const NVGcolor _channelDColor = nvgRGBA(0xff, 0x00, 0xff, 0xd0); + const NVGcolor _channelBColor = nvgRGBA(0xff, 0x00, 0xff, 0xd0); + const NVGcolor _channelCColor = nvgRGBA(0xff, 0x80, 0x00, 0xd0); + const NVGcolor _channelDColor = nvgRGBA(0x00, 0x80, 0xff, 0xd0); Analyzer* _module; const Vec _size;