#cc6134 Color
Color Codes | |
---|---|
Hex Code | #cc6134 |
RGB Code | rgb(204, 97, 52) |
HSL Code | hsl(18, 60%, 50%) |
#cc6134 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(204, 97, 52); }
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(18, 60%, 50%); }
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 #cc6134
RGB Code | Hex Code | Preview |
---|---|---|
rgb(204, 97, 52, 10%) | #cc61341a | |
rgb(204, 97, 52, 20%) | #cc613433 | |
rgb(204, 97, 52, 40%) | #cc61344C | |
rgb(204, 97, 52, 60%) | #cc613499 | |
rgb(204, 97, 52, 80%) | #cc6134CC | |
rgb(204, 97, 52, 100%) | #cc6134FF |
Saturated and desaturated colors of #cc6134
HSL Code | Preview |
---|---|
hsl(18, 10%, 50%) | |
hsl(18, 20%, 50%) | |
hsl(18, 40%, 50%) | |
hsl(18, 60%, 50%) | |
hsl(18, 80%, 50%) | |
hsl(18, 100%, 50%) |
#cc6134 Color Usage In CSS
body { color: #cc6134; } p { color: rgb(204, 97, 52); } header { border-bottom:1px solid #cc6134; }