#cabf71 Color
Color Codes | |
---|---|
Hex Code | #cabf71 |
RGB Code | rgb(202, 191, 113) |
HSL Code | hsl(53, 46%, 62%) |
#cabf71 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(202, 191, 113); }
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(53, 46%, 62%); }
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 #cabf71
RGB Code | Hex Code | Preview |
---|---|---|
rgb(202, 191, 113, 10%) | #cabf711a | |
rgb(202, 191, 113, 20%) | #cabf7133 | |
rgb(202, 191, 113, 40%) | #cabf714C | |
rgb(202, 191, 113, 60%) | #cabf7199 | |
rgb(202, 191, 113, 80%) | #cabf71CC | |
rgb(202, 191, 113, 100%) | #cabf71FF |
Saturated and desaturated colors of #cabf71
HSL Code | Preview |
---|---|
hsl(53, 10%, 62%) | |
hsl(53, 20%, 62%) | |
hsl(53, 40%, 62%) | |
hsl(53, 60%, 62%) | |
hsl(53, 80%, 62%) | |
hsl(53, 100%, 62%) |
#cabf71 Color Usage In CSS
body { color: #cabf71; } p { color: rgb(202, 191, 113); } header { border-bottom:1px solid #cabf71; }