#84d1fc Color
Color Codes | |
---|---|
Hex Code | #84d1fc |
RGB Code | rgb(132, 209, 252) |
HSL Code | hsl(202, 95%, 75%) |
#84d1fc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(132, 209, 252); }
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, 95%, 75%); }
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 #84d1fc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(132, 209, 252, 10%) | #84d1fc1a | |
rgb(132, 209, 252, 20%) | #84d1fc33 | |
rgb(132, 209, 252, 40%) | #84d1fc4C | |
rgb(132, 209, 252, 60%) | #84d1fc99 | |
rgb(132, 209, 252, 80%) | #84d1fcCC | |
rgb(132, 209, 252, 100%) | #84d1fcFF |
Saturated and desaturated colors of #84d1fc
HSL Code | Preview |
---|---|
hsl(202, 10%, 75%) | |
hsl(202, 20%, 75%) | |
hsl(202, 40%, 75%) | |
hsl(202, 60%, 75%) | |
hsl(202, 80%, 75%) | |
hsl(202, 100%, 75%) |
#84d1fc Color Usage In CSS
body { color: #84d1fc; } p { color: rgb(132, 209, 252); } header { border-bottom:1px solid #84d1fc; }