#c1877a Color
Color Codes | |
---|---|
Hex Code | #c1877a |
RGB Code | rgb(193, 135, 122) |
HSL Code | hsl(11, 36%, 62%) |
#c1877a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(193, 135, 122); }
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(11, 36%, 62%); }
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 #c1877a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(193, 135, 122, 10%) | #c1877a1a | |
rgb(193, 135, 122, 20%) | #c1877a33 | |
rgb(193, 135, 122, 40%) | #c1877a4C | |
rgb(193, 135, 122, 60%) | #c1877a99 | |
rgb(193, 135, 122, 80%) | #c1877aCC | |
rgb(193, 135, 122, 100%) | #c1877aFF |
Saturated and desaturated colors of #c1877a
HSL Code | Preview |
---|---|
hsl(11, 10%, 62%) | |
hsl(11, 20%, 62%) | |
hsl(11, 40%, 62%) | |
hsl(11, 60%, 62%) | |
hsl(11, 80%, 62%) | |
hsl(11, 100%, 62%) |
#c1877a Color Usage In CSS
body { color: #c1877a; } p { color: rgb(193, 135, 122); } header { border-bottom:1px solid #c1877a; }