#431626 Color
Color Codes | |
---|---|
Hex Code | #431626 |
RGB Code | rgb(67, 22, 38) |
HSL Code | hsl(339, 51%, 17%) |
#431626 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(67, 22, 38); }
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(339, 51%, 17%); }
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 #431626
RGB Code | Hex Code | Preview |
---|---|---|
rgb(67, 22, 38, 10%) | #4316261a | |
rgb(67, 22, 38, 20%) | #43162633 | |
rgb(67, 22, 38, 40%) | #4316264C | |
rgb(67, 22, 38, 60%) | #43162699 | |
rgb(67, 22, 38, 80%) | #431626CC | |
rgb(67, 22, 38, 100%) | #431626FF |
Saturated and desaturated colors of #431626
HSL Code | Preview |
---|---|
hsl(339, 10%, 17%) | |
hsl(339, 20%, 17%) | |
hsl(339, 40%, 17%) | |
hsl(339, 60%, 17%) | |
hsl(339, 80%, 17%) | |
hsl(339, 100%, 17%) |
#431626 Color Usage In CSS
body { color: #431626; } p { color: rgb(67, 22, 38); } header { border-bottom:1px solid #431626; }