#d9ed96 Color
Color Codes | |
---|---|
Hex Code | #d9ed96 |
RGB Code | rgb(217, 237, 150) |
HSL Code | hsl(74, 71%, 76%) |
#d9ed96 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(217, 237, 150); }
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(74, 71%, 76%); }
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 #d9ed96
RGB Code | Hex Code | Preview |
---|---|---|
rgb(217, 237, 150, 10%) | #d9ed961a | |
rgb(217, 237, 150, 20%) | #d9ed9633 | |
rgb(217, 237, 150, 40%) | #d9ed964C | |
rgb(217, 237, 150, 60%) | #d9ed9699 | |
rgb(217, 237, 150, 80%) | #d9ed96CC | |
rgb(217, 237, 150, 100%) | #d9ed96FF |
Saturated and desaturated colors of #d9ed96
HSL Code | Preview |
---|---|
hsl(74, 10%, 76%) | |
hsl(74, 20%, 76%) | |
hsl(74, 40%, 76%) | |
hsl(74, 60%, 76%) | |
hsl(74, 80%, 76%) | |
hsl(74, 100%, 76%) |
#d9ed96 Color Usage In CSS
body { color: #d9ed96; } p { color: rgb(217, 237, 150); } header { border-bottom:1px solid #d9ed96; }