#a5e0c4 Color
Color Codes | |
---|---|
Hex Code | #a5e0c4 |
RGB Code | rgb(165, 224, 196) |
HSL Code | hsl(152, 49%, 76%) |
#a5e0c4 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(165, 224, 196); }
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(152, 49%, 76%); }
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 #a5e0c4
RGB Code | Hex Code | Preview |
---|---|---|
rgb(165, 224, 196, 10%) | #a5e0c41a | |
rgb(165, 224, 196, 20%) | #a5e0c433 | |
rgb(165, 224, 196, 40%) | #a5e0c44C | |
rgb(165, 224, 196, 60%) | #a5e0c499 | |
rgb(165, 224, 196, 80%) | #a5e0c4CC | |
rgb(165, 224, 196, 100%) | #a5e0c4FF |
Saturated and desaturated colors of #a5e0c4
HSL Code | Preview |
---|---|
hsl(152, 10%, 76%) | |
hsl(152, 20%, 76%) | |
hsl(152, 40%, 76%) | |
hsl(152, 60%, 76%) | |
hsl(152, 80%, 76%) | |
hsl(152, 100%, 76%) |
#a5e0c4 Color Usage In CSS
body { color: #a5e0c4; } p { color: rgb(165, 224, 196); } header { border-bottom:1px solid #a5e0c4; }