#def4cb Color
Color Codes | |
---|---|
Hex Code | #def4cb |
RGB Code | rgb(222, 244, 203) |
HSL Code | hsl(92, 65%, 88%) |
#def4cb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(222, 244, 203); }
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(92, 65%, 88%); }
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 #def4cb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(222, 244, 203, 10%) | #def4cb1a | |
rgb(222, 244, 203, 20%) | #def4cb33 | |
rgb(222, 244, 203, 40%) | #def4cb4C | |
rgb(222, 244, 203, 60%) | #def4cb99 | |
rgb(222, 244, 203, 80%) | #def4cbCC | |
rgb(222, 244, 203, 100%) | #def4cbFF |
Saturated and desaturated colors of #def4cb
HSL Code | Preview |
---|---|
hsl(92, 10%, 88%) | |
hsl(92, 20%, 88%) | |
hsl(92, 40%, 88%) | |
hsl(92, 60%, 88%) | |
hsl(92, 80%, 88%) | |
hsl(92, 100%, 88%) |
#def4cb Color Usage In CSS
body { color: #def4cb; } p { color: rgb(222, 244, 203); } header { border-bottom:1px solid #def4cb; }