#b92b23 Color
Color Codes | |
---|---|
Hex Code | #b92b23 |
RGB Code | rgb(185, 43, 35) |
HSL Code | hsl(3, 68%, 43%) |
#b92b23 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(185, 43, 35); }
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(3, 68%, 43%); }
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 #b92b23
RGB Code | Hex Code | Preview |
---|---|---|
rgb(185, 43, 35, 10%) | #b92b231a | |
rgb(185, 43, 35, 20%) | #b92b2333 | |
rgb(185, 43, 35, 40%) | #b92b234C | |
rgb(185, 43, 35, 60%) | #b92b2399 | |
rgb(185, 43, 35, 80%) | #b92b23CC | |
rgb(185, 43, 35, 100%) | #b92b23FF |
Saturated and desaturated colors of #b92b23
HSL Code | Preview |
---|---|
hsl(3, 10%, 43%) | |
hsl(3, 20%, 43%) | |
hsl(3, 40%, 43%) | |
hsl(3, 60%, 43%) | |
hsl(3, 80%, 43%) | |
hsl(3, 100%, 43%) |
#b92b23 Color Usage In CSS
body { color: #b92b23; } p { color: rgb(185, 43, 35); } header { border-bottom:1px solid #b92b23; }