InterviewSolution
Saved Bookmarks
| 1. |
How can you identify the colour combination of Hexadecimal value? |
|
Answer» The six digit hexadecimal value is the combinations of three, two digit number sequence represent a color. First two digits represent Red, next two digits for Green and last two digits for Blue (RGB) in the range of 00 – FF. Eg: 000000 is black and FFFFFF is white. FF0000 is bright red. You can try out different combinations of these values to get variety of colors. |
|