#93aecd Color
Color Codes | |
---|---|
Hex Code | #93aecd |
RGB Code | rgb(147, 174, 205) |
HSL Code | hsl(212, 37%, 69%) |
#93aecd Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(147, 174, 205); }
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(212, 37%, 69%); }
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 #93aecd
RGB Code | Hex Code | Preview |
---|---|---|
rgb(147, 174, 205, 10%) | #93aecd1a | |
rgb(147, 174, 205, 20%) | #93aecd33 | |
rgb(147, 174, 205, 40%) | #93aecd4C | |
rgb(147, 174, 205, 60%) | #93aecd99 | |
rgb(147, 174, 205, 80%) | #93aecdCC | |
rgb(147, 174, 205, 100%) | #93aecdFF |
Saturated and desaturated colors of #93aecd
HSL Code | Preview |
---|---|
hsl(212, 10%, 69%) | |
hsl(212, 20%, 69%) | |
hsl(212, 40%, 69%) | |
hsl(212, 60%, 69%) | |
hsl(212, 80%, 69%) | |
hsl(212, 100%, 69%) |
#93aecd Color Usage In CSS
body { color: #93aecd; } p { color: rgb(147, 174, 205); } header { border-bottom:1px solid #93aecd; }