#3e616d Color
Color Codes | |
---|---|
Hex Code | #3e616d |
RGB Code | rgb(62, 97, 109) |
HSL Code | hsl(195, 27%, 34%) |
#3e616d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(62, 97, 109); }
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, 27%, 34%); }
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 #3e616d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(62, 97, 109, 10%) | #3e616d1a | |
rgb(62, 97, 109, 20%) | #3e616d33 | |
rgb(62, 97, 109, 40%) | #3e616d4C | |
rgb(62, 97, 109, 60%) | #3e616d99 | |
rgb(62, 97, 109, 80%) | #3e616dCC | |
rgb(62, 97, 109, 100%) | #3e616dFF |
Saturated and desaturated colors of #3e616d
HSL Code | Preview |
---|---|
hsl(195, 10%, 34%) | |
hsl(195, 20%, 34%) | |
hsl(195, 40%, 34%) | |
hsl(195, 60%, 34%) | |
hsl(195, 80%, 34%) | |
hsl(195, 100%, 34%) |
#3e616d Color Usage In CSS
body { color: #3e616d; } p { color: rgb(62, 97, 109); } header { border-bottom:1px solid #3e616d; }