#4faeee Color
Color Codes | |
---|---|
Hex Code | #4faeee |
RGB Code | rgb(79, 174, 238) |
HSL Code | hsl(204, 82%, 62%) |
#4faeee Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(79, 174, 238); }
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(204, 82%, 62%); }
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 #4faeee
RGB Code | Hex Code | Preview |
---|---|---|
rgb(79, 174, 238, 10%) | #4faeee1a | |
rgb(79, 174, 238, 20%) | #4faeee33 | |
rgb(79, 174, 238, 40%) | #4faeee4C | |
rgb(79, 174, 238, 60%) | #4faeee99 | |
rgb(79, 174, 238, 80%) | #4faeeeCC | |
rgb(79, 174, 238, 100%) | #4faeeeFF |
Saturated and desaturated colors of #4faeee
HSL Code | Preview |
---|---|
hsl(204, 10%, 62%) | |
hsl(204, 20%, 62%) | |
hsl(204, 40%, 62%) | |
hsl(204, 60%, 62%) | |
hsl(204, 80%, 62%) | |
hsl(204, 100%, 62%) |
#4faeee Color Usage In CSS
body { color: #4faeee; } p { color: rgb(79, 174, 238); } header { border-bottom:1px solid #4faeee; }