#dacc9b Color
Color Codes | |
---|---|
Hex Code | #dacc9b |
RGB Code | rgb(218, 204, 155) |
HSL Code | hsl(47, 46%, 73%) |
#dacc9b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(218, 204, 155); }
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(47, 46%, 73%); }
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 #dacc9b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(218, 204, 155, 10%) | #dacc9b1a | |
rgb(218, 204, 155, 20%) | #dacc9b33 | |
rgb(218, 204, 155, 40%) | #dacc9b4C | |
rgb(218, 204, 155, 60%) | #dacc9b99 | |
rgb(218, 204, 155, 80%) | #dacc9bCC | |
rgb(218, 204, 155, 100%) | #dacc9bFF |
Saturated and desaturated colors of #dacc9b
HSL Code | Preview |
---|---|
hsl(47, 10%, 73%) | |
hsl(47, 20%, 73%) | |
hsl(47, 40%, 73%) | |
hsl(47, 60%, 73%) | |
hsl(47, 80%, 73%) | |
hsl(47, 100%, 73%) |
#dacc9b Color Usage In CSS
body { color: #dacc9b; } p { color: rgb(218, 204, 155); } header { border-bottom:1px solid #dacc9b; }