#f79807 Color
Color Codes | |
---|---|
Hex Code | #f79807 |
RGB Code | rgb(247, 152, 07) |
HSL Code | hsl(36, 94%, 50%) |
#f79807 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(247, 152, 07); }
R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.
hsl()
hsl(hue saturation lightness); hsl(hue saturation lightness / alpha); div { background-color: hsl(36, 94%, 50%); }
Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.
Lighter and darker colors of #f79807
RGB Code | Hex Code | Preview |
---|---|---|
rgb(247, 152, 07, 10%) | #f798071a | |
rgb(247, 152, 07, 20%) | #f7980733 | |
rgb(247, 152, 07, 40%) | #f798074C | |
rgb(247, 152, 07, 60%) | #f7980799 | |
rgb(247, 152, 07, 80%) | #f79807CC | |
rgb(247, 152, 07, 100%) | #f79807FF |
Saturated and desaturated colors of #f79807
HSL Code | Preview |
---|---|
hsl(36, 10%, 50%) | |
hsl(36, 20%, 50%) | |
hsl(36, 40%, 50%) | |
hsl(36, 60%, 50%) | |
hsl(36, 80%, 50%) | |
hsl(36, 100%, 50%) |
#f79807 Color Usage In CSS
body { color: #f79807; } p { color: rgb(247, 152, 07); } header { border-bottom:1px solid #f79807; }