#dab389 Color
Color Codes | |
---|---|
Hex Code | #dab389 |
RGB Code | rgb(218, 179, 137) |
HSL Code | hsl(31, 52%, 70%) |
#dab389 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(218, 179, 137); }
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(31, 52%, 70%); }
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 #dab389
RGB Code | Hex Code | Preview |
---|---|---|
rgb(218, 179, 137, 10%) | #dab3891a | |
rgb(218, 179, 137, 20%) | #dab38933 | |
rgb(218, 179, 137, 40%) | #dab3894C | |
rgb(218, 179, 137, 60%) | #dab38999 | |
rgb(218, 179, 137, 80%) | #dab389CC | |
rgb(218, 179, 137, 100%) | #dab389FF |
Saturated and desaturated colors of #dab389
HSL Code | Preview |
---|---|
hsl(31, 10%, 70%) | |
hsl(31, 20%, 70%) | |
hsl(31, 40%, 70%) | |
hsl(31, 60%, 70%) | |
hsl(31, 80%, 70%) | |
hsl(31, 100%, 70%) |
#dab389 Color Usage In CSS
body { color: #dab389; } p { color: rgb(218, 179, 137); } header { border-bottom:1px solid #dab389; }