#75935a Color
Color Codes | |
---|---|
Hex Code | #75935a |
RGB Code | rgb(117, 147, 90) |
HSL Code | hsl(92, 24%, 46%) |
#75935a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(117, 147, 90); }
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(92, 24%, 46%); }
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 #75935a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(117, 147, 90, 10%) | #75935a1a | |
rgb(117, 147, 90, 20%) | #75935a33 | |
rgb(117, 147, 90, 40%) | #75935a4C | |
rgb(117, 147, 90, 60%) | #75935a99 | |
rgb(117, 147, 90, 80%) | #75935aCC | |
rgb(117, 147, 90, 100%) | #75935aFF |
Saturated and desaturated colors of #75935a
HSL Code | Preview |
---|---|
hsl(92, 10%, 46%) | |
hsl(92, 20%, 46%) | |
hsl(92, 40%, 46%) | |
hsl(92, 60%, 46%) | |
hsl(92, 80%, 46%) | |
hsl(92, 100%, 46%) |
#75935a Color Usage In CSS
body { color: #75935a; } p { color: rgb(117, 147, 90); } header { border-bottom:1px solid #75935a; }