#abbd7c Color
Color Codes | |
---|---|
Hex Code | #abbd7c |
RGB Code | rgb(171, 189, 124) |
HSL Code | hsl(77, 33%, 61%) |
#abbd7c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(171, 189, 124); }
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(77, 33%, 61%); }
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 #abbd7c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(171, 189, 124, 10%) | #abbd7c1a | |
rgb(171, 189, 124, 20%) | #abbd7c33 | |
rgb(171, 189, 124, 40%) | #abbd7c4C | |
rgb(171, 189, 124, 60%) | #abbd7c99 | |
rgb(171, 189, 124, 80%) | #abbd7cCC | |
rgb(171, 189, 124, 100%) | #abbd7cFF |
Saturated and desaturated colors of #abbd7c
HSL Code | Preview |
---|---|
hsl(77, 10%, 61%) | |
hsl(77, 20%, 61%) | |
hsl(77, 40%, 61%) | |
hsl(77, 60%, 61%) | |
hsl(77, 80%, 61%) | |
hsl(77, 100%, 61%) |
#abbd7c Color Usage In CSS
body { color: #abbd7c; } p { color: rgb(171, 189, 124); } header { border-bottom:1px solid #abbd7c; }