#add0ba Color
Color Codes | |
---|---|
Hex Code | #add0ba |
RGB Code | rgb(173, 208, 186) |
HSL Code | hsl(142, 27%, 75%) |
#add0ba Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(173, 208, 186); }
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(142, 27%, 75%); }
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 #add0ba
RGB Code | Hex Code | Preview |
---|---|---|
rgb(173, 208, 186, 10%) | #add0ba1a | |
rgb(173, 208, 186, 20%) | #add0ba33 | |
rgb(173, 208, 186, 40%) | #add0ba4C | |
rgb(173, 208, 186, 60%) | #add0ba99 | |
rgb(173, 208, 186, 80%) | #add0baCC | |
rgb(173, 208, 186, 100%) | #add0baFF |
Saturated and desaturated colors of #add0ba
HSL Code | Preview |
---|---|
hsl(142, 10%, 75%) | |
hsl(142, 20%, 75%) | |
hsl(142, 40%, 75%) | |
hsl(142, 60%, 75%) | |
hsl(142, 80%, 75%) | |
hsl(142, 100%, 75%) |
#add0ba Color Usage In CSS
body { color: #add0ba; } p { color: rgb(173, 208, 186); } header { border-bottom:1px solid #add0ba; }