#d15379 Color
Color Codes | |
---|---|
Hex Code | #d15379 |
RGB Code | rgb(209, 83, 121) |
HSL Code | hsl(342, 58%, 57%) |
#d15379 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(209, 83, 121); }
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, 58%, 57%); }
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 #d15379
RGB Code | Hex Code | Preview |
---|---|---|
rgb(209, 83, 121, 10%) | #d153791a | |
rgb(209, 83, 121, 20%) | #d1537933 | |
rgb(209, 83, 121, 40%) | #d153794C | |
rgb(209, 83, 121, 60%) | #d1537999 | |
rgb(209, 83, 121, 80%) | #d15379CC | |
rgb(209, 83, 121, 100%) | #d15379FF |
Saturated and desaturated colors of #d15379
HSL Code | Preview |
---|---|
hsl(342, 10%, 57%) | |
hsl(342, 20%, 57%) | |
hsl(342, 40%, 57%) | |
hsl(342, 60%, 57%) | |
hsl(342, 80%, 57%) | |
hsl(342, 100%, 57%) |
#d15379 Color Usage In CSS
body { color: #d15379; } p { color: rgb(209, 83, 121); } header { border-bottom:1px solid #d15379; }