#8b050f Color
Color Codes | |
---|---|
Hex Code | #8b050f |
RGB Code | rgb(139, 05, 15) |
HSL Code | hsl(356, 93%, 28%) |
#8b050f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(139, 05, 15); }
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(356, 93%, 28%); }
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 #8b050f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(139, 05, 15, 10%) | #8b050f1a | |
rgb(139, 05, 15, 20%) | #8b050f33 | |
rgb(139, 05, 15, 40%) | #8b050f4C | |
rgb(139, 05, 15, 60%) | #8b050f99 | |
rgb(139, 05, 15, 80%) | #8b050fCC | |
rgb(139, 05, 15, 100%) | #8b050fFF |
Saturated and desaturated colors of #8b050f
HSL Code | Preview |
---|---|
hsl(356, 10%, 28%) | |
hsl(356, 20%, 28%) | |
hsl(356, 40%, 28%) | |
hsl(356, 60%, 28%) | |
hsl(356, 80%, 28%) | |
hsl(356, 100%, 28%) |
#8b050f Color Usage In CSS
body { color: #8b050f; } p { color: rgb(139, 05, 15); } header { border-bottom:1px solid #8b050f; }