#f57550 Color
Color Codes | |
---|---|
Hex Code | #f57550 |
RGB Code | rgb(245, 117, 80) |
HSL Code | hsl(13, 89%, 64%) |
#f57550 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(245, 117, 80); }
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, 89%, 64%); }
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 #f57550
RGB Code | Hex Code | Preview |
---|---|---|
rgb(245, 117, 80, 10%) | #f575501a | |
rgb(245, 117, 80, 20%) | #f5755033 | |
rgb(245, 117, 80, 40%) | #f575504C | |
rgb(245, 117, 80, 60%) | #f5755099 | |
rgb(245, 117, 80, 80%) | #f57550CC | |
rgb(245, 117, 80, 100%) | #f57550FF |
Saturated and desaturated colors of #f57550
HSL Code | Preview |
---|---|
hsl(13, 10%, 64%) | |
hsl(13, 20%, 64%) | |
hsl(13, 40%, 64%) | |
hsl(13, 60%, 64%) | |
hsl(13, 80%, 64%) | |
hsl(13, 100%, 64%) |
#f57550 Color Usage In CSS
body { color: #f57550; } p { color: rgb(245, 117, 80); } header { border-bottom:1px solid #f57550; }