Jump to content

RRRGGGBBB Color Chart


SNIPERMASTER

Recommended Posts

Hey, can someone give me a link or a chart for colors in RRRGGGBBB Format? I play Counterstrike and I'm making a server, and a part of it, to customize words that appear randomly in the server, I need to put the colors in RRRGGGBBB Format, or else it wont work. I've tried RGB and RRGGBB, but it HAS to be in RRRGGGBBB Format for it to work, so if someone could help me, I would REALLY appreciate it! Thanks!

Link to comment
Share on other sites

What exactly is "RRRGGGBBB" format? If you need decimal numbers for each channel, then take the hex value ("RRGGBB"), and convert each value to decimal. If you don't know how to do that yourself, the Windows calculator can do it in scientific mode. Hit the hex button, type the hex value, and hit the dec button to convert to decimal.

Link to comment
Share on other sites

For example, you have this color, represented in hex format:#A8C24ESplit it up into channels:R = A8G = C2B = 4EConvert each of those values to decimal. Go to Start -> Run -> calc.exe. Go to View -> Scientific. Click the Hex radio button to change to hexadecimal mode. Enter the value, such as A8, and click the Dec button to convert back to decimal. 0xA8 is equal to 168 in decimal. So the three values would be converted to these:R = 168G = 194B = 78

Link to comment
Share on other sites

Hi,I wouldn't use a hexcode at all. Most painting programs have an 'rgb' capability. In CSS, there is an RGB tool:p {color: rgb(Rvalue, Gvalue, Bvalue)}The values must be numeric!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...