#f73907 Color
Color Codes | |
---|---|
Hex Code | #f73907 |
RGB Code | rgb(247, 57, 07) |
HSL Code | hsl(13, 94%, 50%) |
#f73907 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(247, 57, 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(13, 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 #f73907
RGB Code | Hex Code | Preview |
---|---|---|
rgb(247, 57, 07, 10%) | #f739071a | |
rgb(247, 57, 07, 20%) | #f7390733 | |
rgb(247, 57, 07, 40%) | #f739074C | |
rgb(247, 57, 07, 60%) | #f7390799 | |
rgb(247, 57, 07, 80%) | #f73907CC | |
rgb(247, 57, 07, 100%) | #f73907FF |
Saturated and desaturated colors of #f73907
HSL Code | Preview |
---|---|
hsl(13, 10%, 50%) | |
hsl(13, 20%, 50%) | |
hsl(13, 40%, 50%) | |
hsl(13, 60%, 50%) | |
hsl(13, 80%, 50%) | |
hsl(13, 100%, 50%) |
#f73907 Color Usage In CSS
body { color: #f73907; } p { color: rgb(247, 57, 07); } header { border-bottom:1px solid #f73907; }