#cbf8bc Color
Color Codes | |
---|---|
Hex Code | #cbf8bc |
RGB Code | rgb(203, 248, 188) |
HSL Code | hsl(105, 81%, 85%) |
#cbf8bc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(203, 248, 188); }
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(105, 81%, 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 #cbf8bc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(203, 248, 188, 10%) | #cbf8bc1a | |
rgb(203, 248, 188, 20%) | #cbf8bc33 | |
rgb(203, 248, 188, 40%) | #cbf8bc4C | |
rgb(203, 248, 188, 60%) | #cbf8bc99 | |
rgb(203, 248, 188, 80%) | #cbf8bcCC | |
rgb(203, 248, 188, 100%) | #cbf8bcFF |
Saturated and desaturated colors of #cbf8bc
HSL Code | Preview |
---|---|
hsl(105, 10%, 85%) | |
hsl(105, 20%, 85%) | |
hsl(105, 40%, 85%) | |
hsl(105, 60%, 85%) | |
hsl(105, 80%, 85%) | |
hsl(105, 100%, 85%) |
#cbf8bc Color Usage In CSS
body { color: #cbf8bc; } p { color: rgb(203, 248, 188); } header { border-bottom:1px solid #cbf8bc; }