#c36561 Color
Color Codes | |
---|---|
Hex Code | #c36561 |
RGB Code | rgb(195, 101, 97) |
HSL Code | hsl(2, 45%, 57%) |
#c36561 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(195, 101, 97); }
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(2, 45%, 57%); }
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 #c36561
RGB Code | Hex Code | Preview |
---|---|---|
rgb(195, 101, 97, 10%) | #c365611a | |
rgb(195, 101, 97, 20%) | #c3656133 | |
rgb(195, 101, 97, 40%) | #c365614C | |
rgb(195, 101, 97, 60%) | #c3656199 | |
rgb(195, 101, 97, 80%) | #c36561CC | |
rgb(195, 101, 97, 100%) | #c36561FF |
Saturated and desaturated colors of #c36561
HSL Code | Preview |
---|---|
hsl(2, 10%, 57%) | |
hsl(2, 20%, 57%) | |
hsl(2, 40%, 57%) | |
hsl(2, 60%, 57%) | |
hsl(2, 80%, 57%) | |
hsl(2, 100%, 57%) |
#c36561 Color Usage In CSS
body { color: #c36561; } p { color: rgb(195, 101, 97); } header { border-bottom:1px solid #c36561; }