#de4f77 Color
Color Codes | |
---|---|
Hex Code | #de4f77 |
RGB Code | rgb(222, 79, 119) |
HSL Code | hsl(343, 68%, 59%) |
#de4f77 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(222, 79, 119); }
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(343, 68%, 59%); }
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 #de4f77
RGB Code | Hex Code | Preview |
---|---|---|
rgb(222, 79, 119, 10%) | #de4f771a | |
rgb(222, 79, 119, 20%) | #de4f7733 | |
rgb(222, 79, 119, 40%) | #de4f774C | |
rgb(222, 79, 119, 60%) | #de4f7799 | |
rgb(222, 79, 119, 80%) | #de4f77CC | |
rgb(222, 79, 119, 100%) | #de4f77FF |
Saturated and desaturated colors of #de4f77
HSL Code | Preview |
---|---|
hsl(343, 10%, 59%) | |
hsl(343, 20%, 59%) | |
hsl(343, 40%, 59%) | |
hsl(343, 60%, 59%) | |
hsl(343, 80%, 59%) | |
hsl(343, 100%, 59%) |
#de4f77 Color Usage In CSS
body { color: #de4f77; } p { color: rgb(222, 79, 119); } header { border-bottom:1px solid #de4f77; }