#76102d Color
Color Codes | |
---|---|
Hex Code | #76102d |
RGB Code | rgb(118, 16, 45) |
HSL Code | hsl(343, 76%, 26%) |
#76102d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(118, 16, 45); }
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(343, 76%, 26%); }
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 #76102d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(118, 16, 45, 10%) | #76102d1a | |
rgb(118, 16, 45, 20%) | #76102d33 | |
rgb(118, 16, 45, 40%) | #76102d4C | |
rgb(118, 16, 45, 60%) | #76102d99 | |
rgb(118, 16, 45, 80%) | #76102dCC | |
rgb(118, 16, 45, 100%) | #76102dFF |
Saturated and desaturated colors of #76102d
HSL Code | Preview |
---|---|
hsl(343, 10%, 26%) | |
hsl(343, 20%, 26%) | |
hsl(343, 40%, 26%) | |
hsl(343, 60%, 26%) | |
hsl(343, 80%, 26%) | |
hsl(343, 100%, 26%) |
#76102d Color Usage In CSS
body { color: #76102d; } p { color: rgb(118, 16, 45); } header { border-bottom:1px solid #76102d; }