From 1e29d1281993d10d6bc3d0829dc0ac2eb3cd012d Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 16 Nov 2019 23:01:29 +0100 Subject: [PATCH] More saturation in dynamic colors. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index c08579b8..b9859cad 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -13129,7 +13129,7 @@ uint32_t View::GetZoneColor( const ZoneEvent& ev, uint64_t thread, int depth ) static uint32_t GetHsvColor( uint64_t hue, int value ) { const uint8_t h = ( hue * 11400714819323198485ull ) & 0xFF; - const uint8_t s = 96; + const uint8_t s = 108; const uint8_t v = std::max( 96, 170 - value * 8 ); const uint8_t reg = h / 43;