#c44f86 Color
Color Codes | |
---|---|
Hex Code | #c44f86 |
RGB Code | rgb(196, 79, 134) |
HSL Code | hsl(332, 50%, 54%) |
#c44f86 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(196, 79, 134); }
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(332, 50%, 54%); }
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 #c44f86
RGB Code | Hex Code | Preview |
---|---|---|
rgb(196, 79, 134, 10%) | #c44f861a | |
rgb(196, 79, 134, 20%) | #c44f8633 | |
rgb(196, 79, 134, 40%) | #c44f864C | |
rgb(196, 79, 134, 60%) | #c44f8699 | |
rgb(196, 79, 134, 80%) | #c44f86CC | |
rgb(196, 79, 134, 100%) | #c44f86FF |
Saturated and desaturated colors of #c44f86
HSL Code | Preview |
---|---|
hsl(332, 10%, 54%) | |
hsl(332, 20%, 54%) | |
hsl(332, 40%, 54%) | |
hsl(332, 60%, 54%) | |
hsl(332, 80%, 54%) | |
hsl(332, 100%, 54%) |
#c44f86 Color Usage In CSS
body { color: #c44f86; } p { color: rgb(196, 79, 134); } header { border-bottom:1px solid #c44f86; }