#c19672 Color
Color Codes | |
---|---|
Hex Code | #c19672 |
RGB Code | rgb(193, 150, 114) |
HSL Code | hsl(27, 39%, 60%) |
#c19672 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(193, 150, 114); }
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(27, 39%, 60%); }
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 #c19672
RGB Code | Hex Code | Preview |
---|---|---|
rgb(193, 150, 114, 10%) | #c196721a | |
rgb(193, 150, 114, 20%) | #c1967233 | |
rgb(193, 150, 114, 40%) | #c196724C | |
rgb(193, 150, 114, 60%) | #c1967299 | |
rgb(193, 150, 114, 80%) | #c19672CC | |
rgb(193, 150, 114, 100%) | #c19672FF |
Saturated and desaturated colors of #c19672
HSL Code | Preview |
---|---|
hsl(27, 10%, 60%) | |
hsl(27, 20%, 60%) | |
hsl(27, 40%, 60%) | |
hsl(27, 60%, 60%) | |
hsl(27, 80%, 60%) | |
hsl(27, 100%, 60%) |
#c19672 Color Usage In CSS
body { color: #c19672; } p { color: rgb(193, 150, 114); } header { border-bottom:1px solid #c19672; }