#61364e Color
Color Codes | |
---|---|
Hex Code | #61364e |
RGB Code | rgb(97, 54, 78) |
HSL Code | hsl(327, 28%, 30%) |
#61364e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(97, 54, 78); }
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(327, 28%, 30%); }
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 #61364e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(97, 54, 78, 10%) | #61364e1a | |
rgb(97, 54, 78, 20%) | #61364e33 | |
rgb(97, 54, 78, 40%) | #61364e4C | |
rgb(97, 54, 78, 60%) | #61364e99 | |
rgb(97, 54, 78, 80%) | #61364eCC | |
rgb(97, 54, 78, 100%) | #61364eFF |
Saturated and desaturated colors of #61364e
HSL Code | Preview |
---|---|
hsl(327, 10%, 30%) | |
hsl(327, 20%, 30%) | |
hsl(327, 40%, 30%) | |
hsl(327, 60%, 30%) | |
hsl(327, 80%, 30%) | |
hsl(327, 100%, 30%) |
#61364e Color Usage In CSS
body { color: #61364e; } p { color: rgb(97, 54, 78); } header { border-bottom:1px solid #61364e; }