From 857cc25c5781b28f6201aed727402301fd50d345 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Sun, 7 Mar 2021 09:08:22 +0100 Subject: [PATCH] Make luma and chroma adjustments --- plugins/editor/src/editor/GUIPiano.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/editor/src/editor/GUIPiano.cpp b/plugins/editor/src/editor/GUIPiano.cpp index c056f56d..ef82e5de 100644 --- a/plugins/editor/src/editor/GUIPiano.cpp +++ b/plugins/editor/src/editor/GUIPiano.cpp @@ -33,10 +33,10 @@ struct SPiano::Impl { float keyUsedHue_ = 0.55; float keySwitchHue_ = 0.0; - float whiteKeyChroma_ = 1.0; - float blackKeyChroma_ = 1.0; + float whiteKeyChroma_ = 0.9; + float blackKeyChroma_ = 0.75; float whiteKeyLuma_ = 0.9; - float blackKeyLuma_ = 0.5; + float blackKeyLuma_ = 0.35; float keyLumaPressDelta_ = 0.2; CColor outline_ { 0x00, 0x00, 0x00, 0xff };