0
Can someone tell how to find rgp color values?
its confusing ....for ex....(colur value for red ?) ff000 ,00ff00 ,rgp 255,0,0 .....how to find
3 Answers
+ 1
1.first of all, it's not rgp, it's R-G-B
stands for Red-Green-Blue
2. If hexadecimal, There are 3-digit and 6-digit version, e.g. #fff, #ff0000, must be three or six digit with # before. Otherwise rgb(3 numbers).
3. Hexadecimal is each digit from 0 to 15, because no 10, 11, 12,..,15 in math so use a,b,c,d,e,f instead. so A0=160, FF=255, etc.
4. then the three numbers are for red, green, blue respectively.
e.g.
4.1 #FF0000 means full red, no green, no blue, so mix is red;
4.2 #00FF00 is full green,
4.3 #0000FF is full blue;
4.4 if all full,#FFFFFF, its white;
4.5 if all zero, #000000, its black.
4.6 #dddddd lighter than #444444.
4.7 rgb(255,255,255)=#FFFFFF
4.8 #A0A0A0=rgb(160,160,160)=light grey
6. to help you understand how the three numbers after the result color, I made this for you, click on anywhere of screen
https://code.sololearn.com/WGw8LumA5gAA/?ref=app
7. actually you can use english name of colors too, the list:
https://www.w3schools.com/colors/colors_names.asp
+ 1
clearly answerd!!!