#da8bae Color
Color Codes | |
---|---|
Hex Code | #da8bae |
RGB Code | rgb(218, 139, 174) |
HSL Code | hsl(333, 52%, 70%) |
#da8bae Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(218, 139, 174); }
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(333, 52%, 70%); }
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 #da8bae
RGB Code | Hex Code | Preview |
---|---|---|
rgb(218, 139, 174, 10%) | #da8bae1a | |
rgb(218, 139, 174, 20%) | #da8bae33 | |
rgb(218, 139, 174, 40%) | #da8bae4C | |
rgb(218, 139, 174, 60%) | #da8bae99 | |
rgb(218, 139, 174, 80%) | #da8baeCC | |
rgb(218, 139, 174, 100%) | #da8baeFF |
Saturated and desaturated colors of #da8bae
HSL Code | Preview |
---|---|
hsl(333, 10%, 70%) | |
hsl(333, 20%, 70%) | |
hsl(333, 40%, 70%) | |
hsl(333, 60%, 70%) | |
hsl(333, 80%, 70%) | |
hsl(333, 100%, 70%) |
#da8bae Color Usage In CSS
body { color: #da8bae; } p { color: rgb(218, 139, 174); } header { border-bottom:1px solid #da8bae; }