#49d7fb Color
Color Codes | |
---|---|
Hex Code | #49d7fb |
RGB Code | rgb(73, 215, 251) |
HSL Code | hsl(192, 96%, 64%) |
#49d7fb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(73, 215, 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(192, 96%, 64%); }
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 #49d7fb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(73, 215, 251, 10%) | #49d7fb1a | |
rgb(73, 215, 251, 20%) | #49d7fb33 | |
rgb(73, 215, 251, 40%) | #49d7fb4C | |
rgb(73, 215, 251, 60%) | #49d7fb99 | |
rgb(73, 215, 251, 80%) | #49d7fbCC | |
rgb(73, 215, 251, 100%) | #49d7fbFF |
Saturated and desaturated colors of #49d7fb
HSL Code | Preview |
---|---|
hsl(192, 10%, 64%) | |
hsl(192, 20%, 64%) | |
hsl(192, 40%, 64%) | |
hsl(192, 60%, 64%) | |
hsl(192, 80%, 64%) | |
hsl(192, 100%, 64%) |
#49d7fb Color Usage In CSS
body { color: #49d7fb; } p { color: rgb(73, 215, 251); } header { border-bottom:1px solid #49d7fb; }