#f44f52 Color
Color Codes | |
---|---|
Hex Code | #f44f52 |
RGB Code | rgb(244, 79, 82) |
HSL Code | hsl(359, 88%, 63%) |
#f44f52 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(244, 79, 82); }
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(359, 88%, 63%); }
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 #f44f52
RGB Code | Hex Code | Preview |
---|---|---|
rgb(244, 79, 82, 10%) | #f44f521a | |
rgb(244, 79, 82, 20%) | #f44f5233 | |
rgb(244, 79, 82, 40%) | #f44f524C | |
rgb(244, 79, 82, 60%) | #f44f5299 | |
rgb(244, 79, 82, 80%) | #f44f52CC | |
rgb(244, 79, 82, 100%) | #f44f52FF |
Saturated and desaturated colors of #f44f52
HSL Code | Preview |
---|---|
hsl(359, 10%, 63%) | |
hsl(359, 20%, 63%) | |
hsl(359, 40%, 63%) | |
hsl(359, 60%, 63%) | |
hsl(359, 80%, 63%) | |
hsl(359, 100%, 63%) |
#f44f52 Color Usage In CSS
body { color: #f44f52; } p { color: rgb(244, 79, 82); } header { border-bottom:1px solid #f44f52; }