#97302b Color
Color Codes | |
---|---|
Hex Code | #97302b |
RGB Code | rgb(151, 48, 43) |
HSL Code | hsl(3, 56%, 38%) |
#97302b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(151, 48, 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(3, 56%, 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 #97302b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(151, 48, 43, 10%) | #97302b1a | |
rgb(151, 48, 43, 20%) | #97302b33 | |
rgb(151, 48, 43, 40%) | #97302b4C | |
rgb(151, 48, 43, 60%) | #97302b99 | |
rgb(151, 48, 43, 80%) | #97302bCC | |
rgb(151, 48, 43, 100%) | #97302bFF |
Saturated and desaturated colors of #97302b
HSL Code | Preview |
---|---|
hsl(3, 10%, 38%) | |
hsl(3, 20%, 38%) | |
hsl(3, 40%, 38%) | |
hsl(3, 60%, 38%) | |
hsl(3, 80%, 38%) | |
hsl(3, 100%, 38%) |
#97302b Color Usage In CSS
body { color: #97302b; } p { color: rgb(151, 48, 43); } header { border-bottom:1px solid #97302b; }