#aaddbe Color
Color Codes | |
---|---|
Hex Code | #aaddbe |
RGB Code | rgb(170, 221, 190) |
HSL Code | hsl(144, 43%, 77%) |
#aaddbe Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(170, 221, 190); }
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(144, 43%, 77%); }
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 #aaddbe
RGB Code | Hex Code | Preview |
---|---|---|
rgb(170, 221, 190, 10%) | #aaddbe1a | |
rgb(170, 221, 190, 20%) | #aaddbe33 | |
rgb(170, 221, 190, 40%) | #aaddbe4C | |
rgb(170, 221, 190, 60%) | #aaddbe99 | |
rgb(170, 221, 190, 80%) | #aaddbeCC | |
rgb(170, 221, 190, 100%) | #aaddbeFF |
Saturated and desaturated colors of #aaddbe
HSL Code | Preview |
---|---|
hsl(144, 10%, 77%) | |
hsl(144, 20%, 77%) | |
hsl(144, 40%, 77%) | |
hsl(144, 60%, 77%) | |
hsl(144, 80%, 77%) | |
hsl(144, 100%, 77%) |
#aaddbe Color Usage In CSS
body { color: #aaddbe; } p { color: rgb(170, 221, 190); } header { border-bottom:1px solid #aaddbe; }