#bb6631 Color
Color Codes | |
---|---|
Hex Code | #bb6631 |
RGB Code | rgb(187, 102, 49) |
HSL Code | hsl(23, 58%, 46%) |
#bb6631 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(187, 102, 49); }
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(23, 58%, 46%); }
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 #bb6631
RGB Code | Hex Code | Preview |
---|---|---|
rgb(187, 102, 49, 10%) | #bb66311a | |
rgb(187, 102, 49, 20%) | #bb663133 | |
rgb(187, 102, 49, 40%) | #bb66314C | |
rgb(187, 102, 49, 60%) | #bb663199 | |
rgb(187, 102, 49, 80%) | #bb6631CC | |
rgb(187, 102, 49, 100%) | #bb6631FF |
Saturated and desaturated colors of #bb6631
HSL Code | Preview |
---|---|
hsl(23, 10%, 46%) | |
hsl(23, 20%, 46%) | |
hsl(23, 40%, 46%) | |
hsl(23, 60%, 46%) | |
hsl(23, 80%, 46%) | |
hsl(23, 100%, 46%) |
#bb6631 Color Usage In CSS
body { color: #bb6631; } p { color: rgb(187, 102, 49); } header { border-bottom:1px solid #bb6631; }