Apparently Illustrator and Photoshop uses different colour settings - Illustrator uses RGB and Photoshop uses some hex/HTML-like colour system with a combination of letters and numbers. Is there any way of 'translating' a RGB colour swatch to Photoshop easily?
|
Both Illustrator and Photoshop use hexadecimal values! The screenshot below: Illustrator is on the left, photoshop is on the right You can use either RGB or hexa between the two programs. To transfer simply select your swatch and open the Color Picker and select the hexadecimal value. Fun fact: The first two letters/numbers of hexadecimal value colors are the Red color. The second pair are the Green colors, and the third pair are the Blue colors. I hope I understood your question correctly. If you want to match up PANTONE swatches... http://kb2.adobe.com/cps/330/330728.html |
|||||||||||||||
|
|
I think it's worth underlining that hex is just an alternative notation for RGB 8 bit-per-channel values, e.g. #DB7093 means exactly the same as rgb(219,112,147). So you can freely translate between them without any issues. In contrast, HSB, Lab, CYMK and Pantone etc are different colour spaces/systems/models and so a direct or exact conversion is not necessarily possible. |
|||
|
|

A=10,B=11,C=12,D=13,E=14,F=15. So0xFF = 15*16+15 = 255. You can even have Google calculate it for you: mattcutts.com/blog/easy-tip-to-convert-hex-to-decimal – Calvin Huang Jan 27 '11 at 15:28@the OP: Each column represents (16 raised to the power of the column number)+ a differential, with the right-most column being column 0. This is how base-10 numbers work as well – horatio May 25 '12 at 15:24