#d9e07c Color
Color Codes | |
---|---|
Hex Code | #d9e07c |
RGB Code | rgb(217, 224, 124) |
HSL Code | hsl(64, 62%, 68%) |
#d9e07c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(217, 224, 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(64, 62%, 68%); }
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 #d9e07c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(217, 224, 124, 10%) | #d9e07c1a | |
rgb(217, 224, 124, 20%) | #d9e07c33 | |
rgb(217, 224, 124, 40%) | #d9e07c4C | |
rgb(217, 224, 124, 60%) | #d9e07c99 | |
rgb(217, 224, 124, 80%) | #d9e07cCC | |
rgb(217, 224, 124, 100%) | #d9e07cFF |
Saturated and desaturated colors of #d9e07c
HSL Code | Preview |
---|---|
hsl(64, 10%, 68%) | |
hsl(64, 20%, 68%) | |
hsl(64, 40%, 68%) | |
hsl(64, 60%, 68%) | |
hsl(64, 80%, 68%) | |
hsl(64, 100%, 68%) |
#d9e07c Color Usage In CSS
body { color: #d9e07c; } p { color: rgb(217, 224, 124); } header { border-bottom:1px solid #d9e07c; }