#f71035 Color
Color Codes | |
---|---|
Hex Code | #f71035 |
RGB Code | rgb(247, 16, 53) |
HSL Code | hsl(350, 94%, 52%) |
#f71035 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(247, 16, 53); }
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(350, 94%, 52%); }
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 #f71035
RGB Code | Hex Code | Preview |
---|---|---|
rgb(247, 16, 53, 10%) | #f710351a | |
rgb(247, 16, 53, 20%) | #f7103533 | |
rgb(247, 16, 53, 40%) | #f710354C | |
rgb(247, 16, 53, 60%) | #f7103599 | |
rgb(247, 16, 53, 80%) | #f71035CC | |
rgb(247, 16, 53, 100%) | #f71035FF |
Saturated and desaturated colors of #f71035
HSL Code | Preview |
---|---|
hsl(350, 10%, 52%) | |
hsl(350, 20%, 52%) | |
hsl(350, 40%, 52%) | |
hsl(350, 60%, 52%) | |
hsl(350, 80%, 52%) | |
hsl(350, 100%, 52%) |
#f71035 Color Usage In CSS
body { color: #f71035; } p { color: rgb(247, 16, 53); } header { border-bottom:1px solid #f71035; }