#d6adc1 Color
Color Codes | |
---|---|
Hex Code | #d6adc1 |
RGB Code | rgb(214, 173, 193) |
HSL Code | hsl(331, 33%, 76%) |
#d6adc1 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(214, 173, 193); }
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(331, 33%, 76%); }
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 #d6adc1
RGB Code | Hex Code | Preview |
---|---|---|
rgb(214, 173, 193, 10%) | #d6adc11a | |
rgb(214, 173, 193, 20%) | #d6adc133 | |
rgb(214, 173, 193, 40%) | #d6adc14C | |
rgb(214, 173, 193, 60%) | #d6adc199 | |
rgb(214, 173, 193, 80%) | #d6adc1CC | |
rgb(214, 173, 193, 100%) | #d6adc1FF |
Saturated and desaturated colors of #d6adc1
HSL Code | Preview |
---|---|
hsl(331, 10%, 76%) | |
hsl(331, 20%, 76%) | |
hsl(331, 40%, 76%) | |
hsl(331, 60%, 76%) | |
hsl(331, 80%, 76%) | |
hsl(331, 100%, 76%) |
#d6adc1 Color Usage In CSS
body { color: #d6adc1; } p { color: rgb(214, 173, 193); } header { border-bottom:1px solid #d6adc1; }