#f423a7 Color
Color Codes | |
---|---|
Hex Code | #f423a7 |
RGB Code | rgb(244, 35, 167) |
HSL Code | hsl(322, 90%, 55%) |
#f423a7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(244, 35, 167); }
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(322, 90%, 55%); }
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 #f423a7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(244, 35, 167, 10%) | #f423a71a | |
rgb(244, 35, 167, 20%) | #f423a733 | |
rgb(244, 35, 167, 40%) | #f423a74C | |
rgb(244, 35, 167, 60%) | #f423a799 | |
rgb(244, 35, 167, 80%) | #f423a7CC | |
rgb(244, 35, 167, 100%) | #f423a7FF |
Saturated and desaturated colors of #f423a7
HSL Code | Preview |
---|---|
hsl(322, 10%, 55%) | |
hsl(322, 20%, 55%) | |
hsl(322, 40%, 55%) | |
hsl(322, 60%, 55%) | |
hsl(322, 80%, 55%) | |
hsl(322, 100%, 55%) |
#f423a7 Color Usage In CSS
body { color: #f423a7; } p { color: rgb(244, 35, 167); } header { border-bottom:1px solid #f423a7; }