#da7287 Color
Color Codes | |
---|---|
Hex Code | #da7287 |
RGB Code | rgb(218, 114, 135) |
HSL Code | hsl(348, 58%, 65%) |
#da7287 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(218, 114, 135); }
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(348, 58%, 65%); }
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 #da7287
RGB Code | Hex Code | Preview |
---|---|---|
rgb(218, 114, 135, 10%) | #da72871a | |
rgb(218, 114, 135, 20%) | #da728733 | |
rgb(218, 114, 135, 40%) | #da72874C | |
rgb(218, 114, 135, 60%) | #da728799 | |
rgb(218, 114, 135, 80%) | #da7287CC | |
rgb(218, 114, 135, 100%) | #da7287FF |
Saturated and desaturated colors of #da7287
HSL Code | Preview |
---|---|
hsl(348, 10%, 65%) | |
hsl(348, 20%, 65%) | |
hsl(348, 40%, 65%) | |
hsl(348, 60%, 65%) | |
hsl(348, 80%, 65%) | |
hsl(348, 100%, 65%) |
#da7287 Color Usage In CSS
body { color: #da7287; } p { color: rgb(218, 114, 135); } header { border-bottom:1px solid #da7287; }