#775c58 Color
Color Codes | |
---|---|
Hex Code | #775c58 |
RGB Code | rgb(119, 92, 88) |
HSL Code | hsl(8, 15%, 41%) |
#775c58 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(119, 92, 88); }
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(8, 15%, 41%); }
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 #775c58
RGB Code | Hex Code | Preview |
---|---|---|
rgb(119, 92, 88, 10%) | #775c581a | |
rgb(119, 92, 88, 20%) | #775c5833 | |
rgb(119, 92, 88, 40%) | #775c584C | |
rgb(119, 92, 88, 60%) | #775c5899 | |
rgb(119, 92, 88, 80%) | #775c58CC | |
rgb(119, 92, 88, 100%) | #775c58FF |
Saturated and desaturated colors of #775c58
HSL Code | Preview |
---|---|
hsl(8, 10%, 41%) | |
hsl(8, 20%, 41%) | |
hsl(8, 40%, 41%) | |
hsl(8, 60%, 41%) | |
hsl(8, 80%, 41%) | |
hsl(8, 100%, 41%) |
#775c58 Color Usage In CSS
body { color: #775c58; } p { color: rgb(119, 92, 88); } header { border-bottom:1px solid #775c58; }