#92092a Color
Color Codes | |
---|---|
Hex Code | #92092a |
RGB Code | rgb(146, 09, 42) |
HSL Code | hsl(346, 88%, 30%) |
#92092a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(146, 09, 42); }
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(346, 88%, 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 #92092a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(146, 09, 42, 10%) | #92092a1a | |
rgb(146, 09, 42, 20%) | #92092a33 | |
rgb(146, 09, 42, 40%) | #92092a4C | |
rgb(146, 09, 42, 60%) | #92092a99 | |
rgb(146, 09, 42, 80%) | #92092aCC | |
rgb(146, 09, 42, 100%) | #92092aFF |
Saturated and desaturated colors of #92092a
HSL Code | Preview |
---|---|
hsl(346, 10%, 30%) | |
hsl(346, 20%, 30%) | |
hsl(346, 40%, 30%) | |
hsl(346, 60%, 30%) | |
hsl(346, 80%, 30%) | |
hsl(346, 100%, 30%) |
#92092a Color Usage In CSS
body { color: #92092a; } p { color: rgb(146, 09, 42); } header { border-bottom:1px solid #92092a; }