#72a3fe Color
Color Codes | |
---|---|
Hex Code | #72a3fe |
RGB Code | rgb(114, 163, 254) |
HSL Code | hsl(219, 99%, 72%) |
#72a3fe Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(114, 163, 254); }
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(219, 99%, 72%); }
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 #72a3fe
RGB Code | Hex Code | Preview |
---|---|---|
rgb(114, 163, 254, 10%) | #72a3fe1a | |
rgb(114, 163, 254, 20%) | #72a3fe33 | |
rgb(114, 163, 254, 40%) | #72a3fe4C | |
rgb(114, 163, 254, 60%) | #72a3fe99 | |
rgb(114, 163, 254, 80%) | #72a3feCC | |
rgb(114, 163, 254, 100%) | #72a3feFF |
Saturated and desaturated colors of #72a3fe
HSL Code | Preview |
---|---|
hsl(219, 10%, 72%) | |
hsl(219, 20%, 72%) | |
hsl(219, 40%, 72%) | |
hsl(219, 60%, 72%) | |
hsl(219, 80%, 72%) | |
hsl(219, 100%, 72%) |
#72a3fe Color Usage In CSS
body { color: #72a3fe; } p { color: rgb(114, 163, 254); } header { border-bottom:1px solid #72a3fe; }