Yellow Color Code
Yellow color is generated by adding red and green colors.
Yellow RGB color code
Yellow RGB code = 255*65536+255*256+0 = #FFFF00
Yellow color chart
Color Color Name Hex Code #RRGGBB
Decimal Code R,G,B
Light yellow1 #FFFFCC rgb(255,255,204) Light yellow2 #FFFF99 rgb(255,255,153) Light yellow3 #FFFF66 rgb(255,255,102) Light yellow4 #FFFF33 rgb(255,255,51) Yellow #FFFF00 rgb(255,255,0) Dark yellow1 #CCCC00 rgb(204,204,0) Dark yellow2 #999900 rgb(153,153,0) Olive #808000 rgb(128,128,0) Dark yellow3 #666600 rgb(102,102,0) Dark yellow4 #333300 rgb(51,51,0) Yellow HTML color code
HTML paragraph with yellow fonts
Code:
<p style="color:yellow">These fonts are yellow!</p>
Result:
These fonts are yellow!
OR
<p style="color:#FFFF00">These fonts are yellow too!</p>
Result:
These fonts are yellow too!
OR
<p style="color:rgb(255,255,0)">These fonts are yellow too!</p>
Result:
These fonts are yellow too!
HTML paragraph with black fonts and yellow background color
Code:
<p style="color:black; background-color:yellow">Background color is yellow</p>
Result:
Background color is yellow
See also