#cae833 Color
Color Codes | |
---|---|
Hex Code | #cae833 |
RGB Code | rgb(202, 232, 51) |
HSL Code | hsl(70, 80%, 55%) |
#cae833 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(202, 232, 51); }
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(70, 80%, 55%); }
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 #cae833
RGB Code | Hex Code | Preview |
---|---|---|
rgb(202, 232, 51, 10%) | #cae8331a | |
rgb(202, 232, 51, 20%) | #cae83333 | |
rgb(202, 232, 51, 40%) | #cae8334C | |
rgb(202, 232, 51, 60%) | #cae83399 | |
rgb(202, 232, 51, 80%) | #cae833CC | |
rgb(202, 232, 51, 100%) | #cae833FF |
Saturated and desaturated colors of #cae833
HSL Code | Preview |
---|---|
hsl(70, 10%, 55%) | |
hsl(70, 20%, 55%) | |
hsl(70, 40%, 55%) | |
hsl(70, 60%, 55%) | |
hsl(70, 80%, 55%) | |
hsl(70, 100%, 55%) |
#cae833 Color Usage In CSS
body { color: #cae833; } p { color: rgb(202, 232, 51); } header { border-bottom:1px solid #cae833; }