#d09ec4 Color
Color Codes | |
---|---|
Hex Code | #d09ec4 |
RGB Code | rgb(208, 158, 196) |
HSL Code | hsl(314, 35%, 72%) |
#d09ec4 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(208, 158, 196); }
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(314, 35%, 72%); }
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 #d09ec4
RGB Code | Hex Code | Preview |
---|---|---|
rgb(208, 158, 196, 10%) | #d09ec41a | |
rgb(208, 158, 196, 20%) | #d09ec433 | |
rgb(208, 158, 196, 40%) | #d09ec44C | |
rgb(208, 158, 196, 60%) | #d09ec499 | |
rgb(208, 158, 196, 80%) | #d09ec4CC | |
rgb(208, 158, 196, 100%) | #d09ec4FF |
Saturated and desaturated colors of #d09ec4
HSL Code | Preview |
---|---|
hsl(314, 10%, 72%) | |
hsl(314, 20%, 72%) | |
hsl(314, 40%, 72%) | |
hsl(314, 60%, 72%) | |
hsl(314, 80%, 72%) | |
hsl(314, 100%, 72%) |
#d09ec4 Color Usage In CSS
body { color: #d09ec4; } p { color: rgb(208, 158, 196); } header { border-bottom:1px solid #d09ec4; }