color hex code example
Example 1: rgba white color
rgb(255,255,255) /*white*/ Hex #FFFFFF
Example 2: html color codes
#1ca69d #e31ce0 #c13e72 #99b34d #3affb9
#6c7093 #b35ba0 #1b1452
Example 3: html color codes
Search This in Search Bar :- "HTML Color Picker" You Will Find Best Tool!
Example 4: hex color picker
For anyone wondering, hex color is just in base 16. So 255 (max color) is FF.
The 6 long string of characters is just the Red Green and Blue channels (RRGGBB).
Which means you shouldn't have to look it up unless you're going for an exact color.
Hex numbers: 0 1 2 3 4 5 6 7 8 9 A B C D E F 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F 20 21.. etc.
Example 5: color in html
<p style="color: red; background-color: blue;">
This text is red and the background is blue
</p>