#dffdc9 Color
Color Codes | |
---|---|
Hex Code | #dffdc9 |
RGB Code | rgb(223, 253, 201) |
HSL Code | hsl(95, 93%, 89%) |
#dffdc9 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(223, 253, 201); }
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, 93%, 89%); }
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 #dffdc9
RGB Code | Hex Code | Preview |
---|---|---|
rgb(223, 253, 201, 10%) | #dffdc91a | |
rgb(223, 253, 201, 20%) | #dffdc933 | |
rgb(223, 253, 201, 40%) | #dffdc94C | |
rgb(223, 253, 201, 60%) | #dffdc999 | |
rgb(223, 253, 201, 80%) | #dffdc9CC | |
rgb(223, 253, 201, 100%) | #dffdc9FF |
Saturated and desaturated colors of #dffdc9
HSL Code | Preview |
---|---|
hsl(95, 10%, 89%) | |
hsl(95, 20%, 89%) | |
hsl(95, 40%, 89%) | |
hsl(95, 60%, 89%) | |
hsl(95, 80%, 89%) | |
hsl(95, 100%, 89%) |
#dffdc9 Color Usage In CSS
body { color: #dffdc9; } p { color: rgb(223, 253, 201); } header { border-bottom:1px solid #dffdc9; }