#b0613f Color
Color Codes | |
---|---|
Hex Code | #b0613f |
RGB Code | rgb(176, 97, 63) |
HSL Code | hsl(18, 47%, 47%) |
#b0613f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(176, 97, 63); }
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(18, 47%, 47%); }
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 #b0613f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(176, 97, 63, 10%) | #b0613f1a | |
rgb(176, 97, 63, 20%) | #b0613f33 | |
rgb(176, 97, 63, 40%) | #b0613f4C | |
rgb(176, 97, 63, 60%) | #b0613f99 | |
rgb(176, 97, 63, 80%) | #b0613fCC | |
rgb(176, 97, 63, 100%) | #b0613fFF |
Saturated and desaturated colors of #b0613f
HSL Code | Preview |
---|---|
hsl(18, 10%, 47%) | |
hsl(18, 20%, 47%) | |
hsl(18, 40%, 47%) | |
hsl(18, 60%, 47%) | |
hsl(18, 80%, 47%) | |
hsl(18, 100%, 47%) |
#b0613f Color Usage In CSS
body { color: #b0613f; } p { color: rgb(176, 97, 63); } header { border-bottom:1px solid #b0613f; }