#977d05 Color
Color Codes | |
---|---|
Hex Code | #977d05 |
RGB Code | rgb(151, 125, 05) |
HSL Code | hsl(49, 94%, 31%) |
#977d05 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(151, 125, 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(49, 94%, 31%); }
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 #977d05
RGB Code | Hex Code | Preview |
---|---|---|
rgb(151, 125, 05, 10%) | #977d051a | |
rgb(151, 125, 05, 20%) | #977d0533 | |
rgb(151, 125, 05, 40%) | #977d054C | |
rgb(151, 125, 05, 60%) | #977d0599 | |
rgb(151, 125, 05, 80%) | #977d05CC | |
rgb(151, 125, 05, 100%) | #977d05FF |
Saturated and desaturated colors of #977d05
HSL Code | Preview |
---|---|
hsl(49, 10%, 31%) | |
hsl(49, 20%, 31%) | |
hsl(49, 40%, 31%) | |
hsl(49, 60%, 31%) | |
hsl(49, 80%, 31%) | |
hsl(49, 100%, 31%) |
#977d05 Color Usage In CSS
body { color: #977d05; } p { color: rgb(151, 125, 05); } header { border-bottom:1px solid #977d05; }