#3e5f77 Color
Color Codes | |
---|---|
Hex Code | #3e5f77 |
RGB Code | rgb(62, 95, 119) |
HSL Code | hsl(205, 31%, 35%) |
#3e5f77 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(62, 95, 119); }
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(205, 31%, 35%); }
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 #3e5f77
RGB Code | Hex Code | Preview |
---|---|---|
rgb(62, 95, 119, 10%) | #3e5f771a | |
rgb(62, 95, 119, 20%) | #3e5f7733 | |
rgb(62, 95, 119, 40%) | #3e5f774C | |
rgb(62, 95, 119, 60%) | #3e5f7799 | |
rgb(62, 95, 119, 80%) | #3e5f77CC | |
rgb(62, 95, 119, 100%) | #3e5f77FF |
Saturated and desaturated colors of #3e5f77
HSL Code | Preview |
---|---|
hsl(205, 10%, 35%) | |
hsl(205, 20%, 35%) | |
hsl(205, 40%, 35%) | |
hsl(205, 60%, 35%) | |
hsl(205, 80%, 35%) | |
hsl(205, 100%, 35%) |
#3e5f77 Color Usage In CSS
body { color: #3e5f77; } p { color: rgb(62, 95, 119); } header { border-bottom:1px solid #3e5f77; }