#dab89d Color
Color Codes | |
---|---|
Hex Code | #dab89d |
RGB Code | rgb(218, 184, 157) |
HSL Code | hsl(27, 45%, 74%) |
#dab89d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(218, 184, 157); }
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, 45%, 74%); }
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 #dab89d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(218, 184, 157, 10%) | #dab89d1a | |
rgb(218, 184, 157, 20%) | #dab89d33 | |
rgb(218, 184, 157, 40%) | #dab89d4C | |
rgb(218, 184, 157, 60%) | #dab89d99 | |
rgb(218, 184, 157, 80%) | #dab89dCC | |
rgb(218, 184, 157, 100%) | #dab89dFF |
Saturated and desaturated colors of #dab89d
HSL Code | Preview |
---|---|
hsl(27, 10%, 74%) | |
hsl(27, 20%, 74%) | |
hsl(27, 40%, 74%) | |
hsl(27, 60%, 74%) | |
hsl(27, 80%, 74%) | |
hsl(27, 100%, 74%) |
#dab89d Color Usage In CSS
body { color: #dab89d; } p { color: rgb(218, 184, 157); } header { border-bottom:1px solid #dab89d; }