• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

RGB

Collapse
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    RGB

    Anyone knows of an algorithm to work out a lighter shade of a given colour?

    e.g. if you are given 0x0000FF then work a few different shades blue...

    Cheers!

    #2
    just reduce/increase appropriate R/G/B component. Increasing should make overall colour lighter and decreasing should make it darker.Ie:

    0x0000FF
    0x0000F0
    0x0000E0
    0x0000D0

    etc

    Comment


      #3
      "e.g. if you are given 0x0000FF then work a few different shades blue..."

      In this case, just increase the other 2 colours equally until you get the right shade.

      When you want to lighten an arbitrary colour, you need to increase the 3 colour values in proportion so that they all reach 255 at the same time.

      To see it in action, look in Paint - Options-EditColors-DefineCustomColors

      Comment

      Working...
      X