#d23865 Color
Color Codes | |
---|---|
Hex Code | #d23865 |
RGB Code | rgb(210, 56, 101) |
HSL Code | hsl(342, 63%, 52%) |
#d23865 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(210, 56, 101); }
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(342, 63%, 52%); }
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 #d23865
RGB Code | Hex Code | Preview |
---|---|---|
rgb(210, 56, 101, 10%) | #d238651a | |
rgb(210, 56, 101, 20%) | #d2386533 | |
rgb(210, 56, 101, 40%) | #d238654C | |
rgb(210, 56, 101, 60%) | #d2386599 | |
rgb(210, 56, 101, 80%) | #d23865CC | |
rgb(210, 56, 101, 100%) | #d23865FF |
Saturated and desaturated colors of #d23865
HSL Code | Preview |
---|---|
hsl(342, 10%, 52%) | |
hsl(342, 20%, 52%) | |
hsl(342, 40%, 52%) | |
hsl(342, 60%, 52%) | |
hsl(342, 80%, 52%) | |
hsl(342, 100%, 52%) |
#d23865 Color Usage In CSS
body { color: #d23865; } p { color: rgb(210, 56, 101); } header { border-bottom:1px solid #d23865; }