#cd6335 Color
Color Codes | |
---|---|
Hex Code | #cd6335 |
RGB Code | rgb(205, 99, 53) |
HSL Code | hsl(18, 60%, 51%) |
#cd6335 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(205, 99, 53); }
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%, 51%); }
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 #cd6335
RGB Code | Hex Code | Preview |
---|---|---|
rgb(205, 99, 53, 10%) | #cd63351a | |
rgb(205, 99, 53, 20%) | #cd633533 | |
rgb(205, 99, 53, 40%) | #cd63354C | |
rgb(205, 99, 53, 60%) | #cd633599 | |
rgb(205, 99, 53, 80%) | #cd6335CC | |
rgb(205, 99, 53, 100%) | #cd6335FF |
Saturated and desaturated colors of #cd6335
HSL Code | Preview |
---|---|
hsl(18, 10%, 51%) | |
hsl(18, 20%, 51%) | |
hsl(18, 40%, 51%) | |
hsl(18, 60%, 51%) | |
hsl(18, 80%, 51%) | |
hsl(18, 100%, 51%) |
#cd6335 Color Usage In CSS
body { color: #cd6335; } p { color: rgb(205, 99, 53); } header { border-bottom:1px solid #cd6335; }