Skip to main content

⚠️ Please note that this topic or post has been archived. The information contained here may no longer be accurate or up-to-date. ⚠️

How to code accurate Color Balance values within copresets ?

Comments

3 comments

  • yeoul shin

    maybe.. I think these numbers are RGB coordinates of color value.

    choose your color @ HSB mode

    HUE : 0 ~ 360

    SATURATION : 0 ~ 30

    BRIGHTNESS : ? (I've only tested at master color balance so I set this value to 100)

    change its color value to rgb then convert 0 ~ 255 value to 0.0 ~ 1.0 scale.

    I used linear interpolation expression.

    0.0 to 1.0 value = (VALUE-0)/(255-0)*(1-0)+0

     

    ex) pink, 40%

    hue = 320, sat = 12 (30 * 40%), brightness = 100

    so I can get rgb value of 255, 224, 245

    then convert to 0.0 ~ 1.0 scale.. and I got some numbers

    1;0.878431373;0.960784314

     

    it's not a clear answer but hope this helps you well!

    0
  • Chris

    Interesting ! I will definitely give it a try.
    I’m curious about how you came up with the 0~30 range for Saturation. It’s definitely not as obvious as 0 to 360 or 0 to 100...

    0
  • yeoul shin

    I checked the values of various colors with many or less saturation. 
    then I have found that the maximum and minimum values of the color do not exceed that satruration range of 0 to 30.

    annnd.. It's just my guess. X) Cheer up to discover more!!

     

    this is simple excel sheet of value convertor i wrote.

    https://www.dropbox.com/s/4gmu8gdjgcdr862/convert.xlsx?dl=0

    0

Post is closed for comments.