#bc5905 Color
Color Codes | |
---|---|
Hex Code | #bc5905 |
RGB Code | rgb(188, 89, 05) |
HSL Code | hsl(28, 95%, 38%) |
#bc5905 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(188, 89, 05); }
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(28, 95%, 38%); }
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 #bc5905
RGB Code | Hex Code | Preview |
---|---|---|
rgb(188, 89, 05, 10%) | #bc59051a | |
rgb(188, 89, 05, 20%) | #bc590533 | |
rgb(188, 89, 05, 40%) | #bc59054C | |
rgb(188, 89, 05, 60%) | #bc590599 | |
rgb(188, 89, 05, 80%) | #bc5905CC | |
rgb(188, 89, 05, 100%) | #bc5905FF |
Saturated and desaturated colors of #bc5905
HSL Code | Preview |
---|---|
hsl(28, 10%, 38%) | |
hsl(28, 20%, 38%) | |
hsl(28, 40%, 38%) | |
hsl(28, 60%, 38%) | |
hsl(28, 80%, 38%) | |
hsl(28, 100%, 38%) |
#bc5905 Color Usage In CSS
body { color: #bc5905; } p { color: rgb(188, 89, 05); } header { border-bottom:1px solid #bc5905; }