#f7430e Color
Color Codes | |
---|---|
Hex Code | #f7430e |
RGB Code | rgb(247, 67, 14) |
HSL Code | hsl(14, 94%, 51%) |
#f7430e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(247, 67, 14); }
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(14, 94%, 51%); }
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 #f7430e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(247, 67, 14, 10%) | #f7430e1a | |
rgb(247, 67, 14, 20%) | #f7430e33 | |
rgb(247, 67, 14, 40%) | #f7430e4C | |
rgb(247, 67, 14, 60%) | #f7430e99 | |
rgb(247, 67, 14, 80%) | #f7430eCC | |
rgb(247, 67, 14, 100%) | #f7430eFF |
Saturated and desaturated colors of #f7430e
HSL Code | Preview |
---|---|
hsl(14, 10%, 51%) | |
hsl(14, 20%, 51%) | |
hsl(14, 40%, 51%) | |
hsl(14, 60%, 51%) | |
hsl(14, 80%, 51%) | |
hsl(14, 100%, 51%) |
#f7430e Color Usage In CSS
body { color: #f7430e; } p { color: rgb(247, 67, 14); } header { border-bottom:1px solid #f7430e; }