#dbbca3 Color
Color Codes | |
---|---|
Hex Code | #dbbca3 |
RGB Code | rgb(219, 188, 163) |
HSL Code | hsl(27, 44%, 75%) |
#dbbca3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(219, 188, 163); }
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(27, 44%, 75%); }
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 #dbbca3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(219, 188, 163, 10%) | #dbbca31a | |
rgb(219, 188, 163, 20%) | #dbbca333 | |
rgb(219, 188, 163, 40%) | #dbbca34C | |
rgb(219, 188, 163, 60%) | #dbbca399 | |
rgb(219, 188, 163, 80%) | #dbbca3CC | |
rgb(219, 188, 163, 100%) | #dbbca3FF |
Saturated and desaturated colors of #dbbca3
HSL Code | Preview |
---|---|
hsl(27, 10%, 75%) | |
hsl(27, 20%, 75%) | |
hsl(27, 40%, 75%) | |
hsl(27, 60%, 75%) | |
hsl(27, 80%, 75%) | |
hsl(27, 100%, 75%) |
#dbbca3 Color Usage In CSS
body { color: #dbbca3; } p { color: rgb(219, 188, 163); } header { border-bottom:1px solid #dbbca3; }