#614e59 Color
Color Codes | |
---|---|
Hex Code | #614e59 |
RGB Code | rgb(97, 78, 89) |
HSL Code | hsl(325, 11%, 34%) |
#614e59 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(97, 78, 89); }
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(325, 11%, 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 #614e59
RGB Code | Hex Code | Preview |
---|---|---|
rgb(97, 78, 89, 10%) | #614e591a | |
rgb(97, 78, 89, 20%) | #614e5933 | |
rgb(97, 78, 89, 40%) | #614e594C | |
rgb(97, 78, 89, 60%) | #614e5999 | |
rgb(97, 78, 89, 80%) | #614e59CC | |
rgb(97, 78, 89, 100%) | #614e59FF |
Saturated and desaturated colors of #614e59
HSL Code | Preview |
---|---|
hsl(325, 10%, 34%) | |
hsl(325, 20%, 34%) | |
hsl(325, 40%, 34%) | |
hsl(325, 60%, 34%) | |
hsl(325, 80%, 34%) | |
hsl(325, 100%, 34%) |
#614e59 Color Usage In CSS
body { color: #614e59; } p { color: rgb(97, 78, 89); } header { border-bottom:1px solid #614e59; }