#671951 Color
Color Codes | |
---|---|
Hex Code | #671951 |
RGB Code | rgb(103, 25, 81) |
HSL Code | hsl(317, 61%, 25%) |
#671951 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(103, 25, 81); }
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(317, 61%, 25%); }
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 #671951
RGB Code | Hex Code | Preview |
---|---|---|
rgb(103, 25, 81, 10%) | #6719511a | |
rgb(103, 25, 81, 20%) | #67195133 | |
rgb(103, 25, 81, 40%) | #6719514C | |
rgb(103, 25, 81, 60%) | #67195199 | |
rgb(103, 25, 81, 80%) | #671951CC | |
rgb(103, 25, 81, 100%) | #671951FF |
Saturated and desaturated colors of #671951
HSL Code | Preview |
---|---|
hsl(317, 10%, 25%) | |
hsl(317, 20%, 25%) | |
hsl(317, 40%, 25%) | |
hsl(317, 60%, 25%) | |
hsl(317, 80%, 25%) | |
hsl(317, 100%, 25%) |
#671951 Color Usage In CSS
body { color: #671951; } p { color: rgb(103, 25, 81); } header { border-bottom:1px solid #671951; }