#cbe7c8 Color
Color Codes | |
---|---|
Hex Code | #cbe7c8 |
RGB Code | rgb(203, 231, 200) |
HSL Code | hsl(114, 39%, 85%) |
#cbe7c8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(203, 231, 200); }
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(114, 39%, 85%); }
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 #cbe7c8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(203, 231, 200, 10%) | #cbe7c81a | |
rgb(203, 231, 200, 20%) | #cbe7c833 | |
rgb(203, 231, 200, 40%) | #cbe7c84C | |
rgb(203, 231, 200, 60%) | #cbe7c899 | |
rgb(203, 231, 200, 80%) | #cbe7c8CC | |
rgb(203, 231, 200, 100%) | #cbe7c8FF |
Saturated and desaturated colors of #cbe7c8
HSL Code | Preview |
---|---|
hsl(114, 10%, 85%) | |
hsl(114, 20%, 85%) | |
hsl(114, 40%, 85%) | |
hsl(114, 60%, 85%) | |
hsl(114, 80%, 85%) | |
hsl(114, 100%, 85%) |
#cbe7c8 Color Usage In CSS
body { color: #cbe7c8; } p { color: rgb(203, 231, 200); } header { border-bottom:1px solid #cbe7c8; }