#cbe6bb Color
Color Codes | |
---|---|
Hex Code | #cbe6bb |
RGB Code | rgb(203, 230, 187) |
HSL Code | hsl(98, 46%, 82%) |
#cbe6bb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(203, 230, 187); }
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(98, 46%, 82%); }
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 #cbe6bb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(203, 230, 187, 10%) | #cbe6bb1a | |
rgb(203, 230, 187, 20%) | #cbe6bb33 | |
rgb(203, 230, 187, 40%) | #cbe6bb4C | |
rgb(203, 230, 187, 60%) | #cbe6bb99 | |
rgb(203, 230, 187, 80%) | #cbe6bbCC | |
rgb(203, 230, 187, 100%) | #cbe6bbFF |
Saturated and desaturated colors of #cbe6bb
HSL Code | Preview |
---|---|
hsl(98, 10%, 82%) | |
hsl(98, 20%, 82%) | |
hsl(98, 40%, 82%) | |
hsl(98, 60%, 82%) | |
hsl(98, 80%, 82%) | |
hsl(98, 100%, 82%) |
#cbe6bb Color Usage In CSS
body { color: #cbe6bb; } p { color: rgb(203, 230, 187); } header { border-bottom:1px solid #cbe6bb; }