#f62374 Color
Color Codes | |
---|---|
Hex Code | #f62374 |
RGB Code | rgb(246, 35, 116) |
HSL Code | hsl(337, 92%, 55%) |
#f62374 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(246, 35, 116); }
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(337, 92%, 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 #f62374
RGB Code | Hex Code | Preview |
---|---|---|
rgb(246, 35, 116, 10%) | #f623741a | |
rgb(246, 35, 116, 20%) | #f6237433 | |
rgb(246, 35, 116, 40%) | #f623744C | |
rgb(246, 35, 116, 60%) | #f6237499 | |
rgb(246, 35, 116, 80%) | #f62374CC | |
rgb(246, 35, 116, 100%) | #f62374FF |
Saturated and desaturated colors of #f62374
HSL Code | Preview |
---|---|
hsl(337, 10%, 55%) | |
hsl(337, 20%, 55%) | |
hsl(337, 40%, 55%) | |
hsl(337, 60%, 55%) | |
hsl(337, 80%, 55%) | |
hsl(337, 100%, 55%) |
#f62374 Color Usage In CSS
body { color: #f62374; } p { color: rgb(246, 35, 116); } header { border-bottom:1px solid #f62374; }