I'm looking for a way to make an RGB color 'warmer'. I initially tried increasing the R component of an RGB color to make it warmer, but that yielded unexpected results. What's the correct way to increase the warmth of an RGB color?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I'm not sure if you're using Python or not - actually I just posted another answer referencing the colorsys library, so I promise I'm not selling it - but I would convert my RGB values to HSV and increase the "value" or do an if-then and check some values to see where I could increase my warmth. Sometimes increasing saturation makes an image look cartoony, where you've basically regressed from complex colors down to primary ones. Good luck! |
|||
|
|