#dbe77c Color
Color Codes | |
---|---|
Hex Code | #dbe77c |
RGB Code | rgb(219, 231, 124) |
HSL Code | hsl(67, 69%, 70%) |
#dbe77c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(219, 231, 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(67, 69%, 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 #dbe77c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(219, 231, 124, 10%) | #dbe77c1a | |
rgb(219, 231, 124, 20%) | #dbe77c33 | |
rgb(219, 231, 124, 40%) | #dbe77c4C | |
rgb(219, 231, 124, 60%) | #dbe77c99 | |
rgb(219, 231, 124, 80%) | #dbe77cCC | |
rgb(219, 231, 124, 100%) | #dbe77cFF |
Saturated and desaturated colors of #dbe77c
HSL Code | Preview |
---|---|
hsl(67, 10%, 70%) | |
hsl(67, 20%, 70%) | |
hsl(67, 40%, 70%) | |
hsl(67, 60%, 70%) | |
hsl(67, 80%, 70%) | |
hsl(67, 100%, 70%) |
#dbe77c Color Usage In CSS
body { color: #dbe77c; } p { color: rgb(219, 231, 124); } header { border-bottom:1px solid #dbe77c; }