#975a07 Color
Color Codes | |
---|---|
Hex Code | #975a07 |
RGB Code | rgb(151, 90, 07) |
HSL Code | hsl(35, 91%, 31%) |
#975a07 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(151, 90, 07); }
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(35, 91%, 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 #975a07
RGB Code | Hex Code | Preview |
---|---|---|
rgb(151, 90, 07, 10%) | #975a071a | |
rgb(151, 90, 07, 20%) | #975a0733 | |
rgb(151, 90, 07, 40%) | #975a074C | |
rgb(151, 90, 07, 60%) | #975a0799 | |
rgb(151, 90, 07, 80%) | #975a07CC | |
rgb(151, 90, 07, 100%) | #975a07FF |
Saturated and desaturated colors of #975a07
HSL Code | Preview |
---|---|
hsl(35, 10%, 31%) | |
hsl(35, 20%, 31%) | |
hsl(35, 40%, 31%) | |
hsl(35, 60%, 31%) | |
hsl(35, 80%, 31%) | |
hsl(35, 100%, 31%) |
#975a07 Color Usage In CSS
body { color: #975a07; } p { color: rgb(151, 90, 07); } header { border-bottom:1px solid #975a07; }