#abb4cc Color
Color Codes | |
---|---|
Hex Code | #abb4cc |
RGB Code | rgb(171, 180, 204) |
HSL Code | hsl(224, 24%, 74%) |
#abb4cc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(171, 180, 204); }
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(224, 24%, 74%); }
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 #abb4cc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(171, 180, 204, 10%) | #abb4cc1a | |
rgb(171, 180, 204, 20%) | #abb4cc33 | |
rgb(171, 180, 204, 40%) | #abb4cc4C | |
rgb(171, 180, 204, 60%) | #abb4cc99 | |
rgb(171, 180, 204, 80%) | #abb4ccCC | |
rgb(171, 180, 204, 100%) | #abb4ccFF |
Saturated and desaturated colors of #abb4cc
HSL Code | Preview |
---|---|
hsl(224, 10%, 74%) | |
hsl(224, 20%, 74%) | |
hsl(224, 40%, 74%) | |
hsl(224, 60%, 74%) | |
hsl(224, 80%, 74%) | |
hsl(224, 100%, 74%) |
#abb4cc Color Usage In CSS
body { color: #abb4cc; } p { color: rgb(171, 180, 204); } header { border-bottom:1px solid #abb4cc; }