#4e8b9f Color
Color Codes | |
---|---|
Hex Code | #4e8b9f |
RGB Code | rgb(78, 139, 159) |
HSL Code | hsl(195, 34%, 46%) |
#4e8b9f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(78, 139, 159); }
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(195, 34%, 46%); }
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 #4e8b9f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(78, 139, 159, 10%) | #4e8b9f1a | |
rgb(78, 139, 159, 20%) | #4e8b9f33 | |
rgb(78, 139, 159, 40%) | #4e8b9f4C | |
rgb(78, 139, 159, 60%) | #4e8b9f99 | |
rgb(78, 139, 159, 80%) | #4e8b9fCC | |
rgb(78, 139, 159, 100%) | #4e8b9fFF |
Saturated and desaturated colors of #4e8b9f
HSL Code | Preview |
---|---|
hsl(195, 10%, 46%) | |
hsl(195, 20%, 46%) | |
hsl(195, 40%, 46%) | |
hsl(195, 60%, 46%) | |
hsl(195, 80%, 46%) | |
hsl(195, 100%, 46%) |
#4e8b9f Color Usage In CSS
body { color: #4e8b9f; } p { color: rgb(78, 139, 159); } header { border-bottom:1px solid #4e8b9f; }