#49a8d8 Color
Color Codes | |
---|---|
Hex Code | #49a8d8 |
RGB Code | rgb(73, 168, 216) |
HSL Code | hsl(200, 65%, 57%) |
#49a8d8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(73, 168, 216); }
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(200, 65%, 57%); }
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 #49a8d8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(73, 168, 216, 10%) | #49a8d81a | |
rgb(73, 168, 216, 20%) | #49a8d833 | |
rgb(73, 168, 216, 40%) | #49a8d84C | |
rgb(73, 168, 216, 60%) | #49a8d899 | |
rgb(73, 168, 216, 80%) | #49a8d8CC | |
rgb(73, 168, 216, 100%) | #49a8d8FF |
Saturated and desaturated colors of #49a8d8
HSL Code | Preview |
---|---|
hsl(200, 10%, 57%) | |
hsl(200, 20%, 57%) | |
hsl(200, 40%, 57%) | |
hsl(200, 60%, 57%) | |
hsl(200, 80%, 57%) | |
hsl(200, 100%, 57%) |
#49a8d8 Color Usage In CSS
body { color: #49a8d8; } p { color: rgb(73, 168, 216); } header { border-bottom:1px solid #49a8d8; }