#175a35 Color
Color Codes | |
---|---|
Hex Code | #175a35 |
RGB Code | rgb(23, 90, 53) |
HSL Code | hsl(147, 59%, 22%) |
#175a35 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(23, 90, 53); }
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(147, 59%, 22%); }
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 #175a35
RGB Code | Hex Code | Preview |
---|---|---|
rgb(23, 90, 53, 10%) | #175a351a | |
rgb(23, 90, 53, 20%) | #175a3533 | |
rgb(23, 90, 53, 40%) | #175a354C | |
rgb(23, 90, 53, 60%) | #175a3599 | |
rgb(23, 90, 53, 80%) | #175a35CC | |
rgb(23, 90, 53, 100%) | #175a35FF |
Saturated and desaturated colors of #175a35
HSL Code | Preview |
---|---|
hsl(147, 10%, 22%) | |
hsl(147, 20%, 22%) | |
hsl(147, 40%, 22%) | |
hsl(147, 60%, 22%) | |
hsl(147, 80%, 22%) | |
hsl(147, 100%, 22%) |
#175a35 Color Usage In CSS
body { color: #175a35; } p { color: rgb(23, 90, 53); } header { border-bottom:1px solid #175a35; }