#c98165 Color
Color Codes | |
---|---|
Hex Code | #c98165 |
RGB Code | rgb(201, 129, 101) |
HSL Code | hsl(17, 48%, 59%) |
#c98165 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(201, 129, 101); }
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(17, 48%, 59%); }
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 #c98165
RGB Code | Hex Code | Preview |
---|---|---|
rgb(201, 129, 101, 10%) | #c981651a | |
rgb(201, 129, 101, 20%) | #c9816533 | |
rgb(201, 129, 101, 40%) | #c981654C | |
rgb(201, 129, 101, 60%) | #c9816599 | |
rgb(201, 129, 101, 80%) | #c98165CC | |
rgb(201, 129, 101, 100%) | #c98165FF |
Saturated and desaturated colors of #c98165
HSL Code | Preview |
---|---|
hsl(17, 10%, 59%) | |
hsl(17, 20%, 59%) | |
hsl(17, 40%, 59%) | |
hsl(17, 60%, 59%) | |
hsl(17, 80%, 59%) | |
hsl(17, 100%, 59%) |
#c98165 Color Usage In CSS
body { color: #c98165; } p { color: rgb(201, 129, 101); } header { border-bottom:1px solid #c98165; }