#3e6469 Color
Color Codes | |
---|---|
Hex Code | #3e6469 |
RGB Code | rgb(62, 100, 105) |
HSL Code | hsl(187, 26%, 33%) |
#3e6469 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(62, 100, 105); }
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(187, 26%, 33%); }
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 #3e6469
RGB Code | Hex Code | Preview |
---|---|---|
rgb(62, 100, 105, 10%) | #3e64691a | |
rgb(62, 100, 105, 20%) | #3e646933 | |
rgb(62, 100, 105, 40%) | #3e64694C | |
rgb(62, 100, 105, 60%) | #3e646999 | |
rgb(62, 100, 105, 80%) | #3e6469CC | |
rgb(62, 100, 105, 100%) | #3e6469FF |
Saturated and desaturated colors of #3e6469
HSL Code | Preview |
---|---|
hsl(187, 10%, 33%) | |
hsl(187, 20%, 33%) | |
hsl(187, 40%, 33%) | |
hsl(187, 60%, 33%) | |
hsl(187, 80%, 33%) | |
hsl(187, 100%, 33%) |
#3e6469 Color Usage In CSS
body { color: #3e6469; } p { color: rgb(62, 100, 105); } header { border-bottom:1px solid #3e6469; }