#44aae4 Color
Color Codes | |
---|---|
Hex Code | #44aae4 |
RGB Code | rgb(68, 170, 228) |
HSL Code | hsl(202, 75%, 58%) |
#44aae4 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(68, 170, 228); }
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(202, 75%, 58%); }
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 #44aae4
RGB Code | Hex Code | Preview |
---|---|---|
rgb(68, 170, 228, 10%) | #44aae41a | |
rgb(68, 170, 228, 20%) | #44aae433 | |
rgb(68, 170, 228, 40%) | #44aae44C | |
rgb(68, 170, 228, 60%) | #44aae499 | |
rgb(68, 170, 228, 80%) | #44aae4CC | |
rgb(68, 170, 228, 100%) | #44aae4FF |
Saturated and desaturated colors of #44aae4
HSL Code | Preview |
---|---|
hsl(202, 10%, 58%) | |
hsl(202, 20%, 58%) | |
hsl(202, 40%, 58%) | |
hsl(202, 60%, 58%) | |
hsl(202, 80%, 58%) | |
hsl(202, 100%, 58%) |
#44aae4 Color Usage In CSS
body { color: #44aae4; } p { color: rgb(68, 170, 228); } header { border-bottom:1px solid #44aae4; }