#aef9fb Color
Color Codes | |
---|---|
Hex Code | #aef9fb |
RGB Code | rgb(174, 249, 251) |
HSL Code | hsl(182, 91%, 83%) |
#aef9fb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(174, 249, 251); }
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(182, 91%, 83%); }
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 #aef9fb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(174, 249, 251, 10%) | #aef9fb1a | |
rgb(174, 249, 251, 20%) | #aef9fb33 | |
rgb(174, 249, 251, 40%) | #aef9fb4C | |
rgb(174, 249, 251, 60%) | #aef9fb99 | |
rgb(174, 249, 251, 80%) | #aef9fbCC | |
rgb(174, 249, 251, 100%) | #aef9fbFF |
Saturated and desaturated colors of #aef9fb
HSL Code | Preview |
---|---|
hsl(182, 10%, 83%) | |
hsl(182, 20%, 83%) | |
hsl(182, 40%, 83%) | |
hsl(182, 60%, 83%) | |
hsl(182, 80%, 83%) | |
hsl(182, 100%, 83%) |
#aef9fb Color Usage In CSS
body { color: #aef9fb; } p { color: rgb(174, 249, 251); } header { border-bottom:1px solid #aef9fb; }