How to find a color's negative saturation counterpart in RGB?

This is what the colors look like normal


This is what colors look like with Color correction’s saturation -2

how to find the rgb value of the second picture’s color?
like if red with -2 saturation becomes blue-ish so how to find its color rgb value?

I think you can just get the hue of the color then offset the hue then reconstruct the color

local Color = Part.Color
local Hue, Saturation, Value = Color:ToHSV()

Hue = (Hue + .5) % 1

local NewColor = Color3.fromHSV(Hue, Saturation, Value)

Part.Color = NewColor
1 Like