#d6fdba Color
Color Codes | |
---|---|
Hex Code | #d6fdba |
RGB Code | rgb(214, 253, 186) |
HSL Code | hsl(95, 94%, 86%) |
#d6fdba Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(214, 253, 186); }
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(95, 94%, 86%); }
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 #d6fdba
RGB Code | Hex Code | Preview |
---|---|---|
rgb(214, 253, 186, 10%) | #d6fdba1a | |
rgb(214, 253, 186, 20%) | #d6fdba33 | |
rgb(214, 253, 186, 40%) | #d6fdba4C | |
rgb(214, 253, 186, 60%) | #d6fdba99 | |
rgb(214, 253, 186, 80%) | #d6fdbaCC | |
rgb(214, 253, 186, 100%) | #d6fdbaFF |
Saturated and desaturated colors of #d6fdba
HSL Code | Preview |
---|---|
hsl(95, 10%, 86%) | |
hsl(95, 20%, 86%) | |
hsl(95, 40%, 86%) | |
hsl(95, 60%, 86%) | |
hsl(95, 80%, 86%) | |
hsl(95, 100%, 86%) |
#d6fdba Color Usage In CSS
body { color: #d6fdba; } p { color: rgb(214, 253, 186); } header { border-bottom:1px solid #d6fdba; }