#b8692b Color
Color Codes | |
---|---|
Hex Code | #b8692b |
RGB Code | rgb(184, 105, 43) |
HSL Code | hsl(26, 62%, 45%) |
#b8692b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(184, 105, 43); }
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(26, 62%, 45%); }
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 #b8692b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(184, 105, 43, 10%) | #b8692b1a | |
rgb(184, 105, 43, 20%) | #b8692b33 | |
rgb(184, 105, 43, 40%) | #b8692b4C | |
rgb(184, 105, 43, 60%) | #b8692b99 | |
rgb(184, 105, 43, 80%) | #b8692bCC | |
rgb(184, 105, 43, 100%) | #b8692bFF |
Saturated and desaturated colors of #b8692b
HSL Code | Preview |
---|---|
hsl(26, 10%, 45%) | |
hsl(26, 20%, 45%) | |
hsl(26, 40%, 45%) | |
hsl(26, 60%, 45%) | |
hsl(26, 80%, 45%) | |
hsl(26, 100%, 45%) |
#b8692b Color Usage In CSS
body { color: #b8692b; } p { color: rgb(184, 105, 43); } header { border-bottom:1px solid #b8692b; }