I always go here.
Hope it helps
http://www.pitt.edu/~nisg/cis/web/cgi/rgb.html
2007-10-24 12:33:52
·
answer #1
·
answered by nickname 3
·
1⤊
0⤋
Do you mean out of 100% Red, 100% Green and 100% Blue?
If so, divide the numbers by 255 (maximum) and multiply by 100%...
#B34700
(179,71,0)
=(70.2%, 27.8%, 0%)
AND
#BFFFFF
(191,255,255)
=(74.9%, 100%, 100%)
AND
#FFFFFF
(255,255,255)
=(100%, 100%, 100%)
2007-10-24 12:36:17
·
answer #2
·
answered by Laughster 4
·
2⤊
0⤋
The # values are simply short forms of the other type converted to hexdecimal, but CSS can use rgb(...,...,...) integer numbers representing red green blue in base 10 values.
2007-10-24 12:46:40
·
answer #3
·
answered by Andy T 7
·
1⤊
0⤋
you are showing the hexadecimal color value. another method to get the rgb value is as follows. the first two characters in your hex color are the "r", while the second two characters are the "g", and the last two characters are the "b". 1. So open up windows calculator, go to "View" then "Scientific". 2. Select the "Hex" radio button. 3. Enter the two desired charaters, so for "r", enter "00" 4. Then click the "Dec" radio button and it will convert to the decimal number for the rgb value. 5. Continue for the other two sets of numbers.
2016-04-10 03:25:05
·
answer #4
·
answered by ? 4
·
0⤊
0⤋
Just take the decimal values and divide them by 2,55.
255 / 2,55 = 100
... and so on.
2007-10-24 12:59:04
·
answer #5
·
answered by Anonymous
·
1⤊
0⤋
well, with dark ones its just rrggbbaa where a is alpha (and is usually missing). with higher than 100 I don't know how the code works. try this
http://www.drpeterjones.com/colorcalc/
2007-10-24 12:34:56
·
answer #6
·
answered by Anonymous
·
1⤊
0⤋