#cd5f29 Color
Color Codes | |
---|---|
Hex Code | #cd5f29 |
RGB Code | rgb(205, 95, 41) |
HSL Code | hsl(20, 67%, 48%) |
#cd5f29 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(205, 95, 41); }
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(20, 67%, 48%); }
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 #cd5f29
RGB Code | Hex Code | Preview |
---|---|---|
rgb(205, 95, 41, 10%) | #cd5f291a | |
rgb(205, 95, 41, 20%) | #cd5f2933 | |
rgb(205, 95, 41, 40%) | #cd5f294C | |
rgb(205, 95, 41, 60%) | #cd5f2999 | |
rgb(205, 95, 41, 80%) | #cd5f29CC | |
rgb(205, 95, 41, 100%) | #cd5f29FF |
Saturated and desaturated colors of #cd5f29
HSL Code | Preview |
---|---|
hsl(20, 10%, 48%) | |
hsl(20, 20%, 48%) | |
hsl(20, 40%, 48%) | |
hsl(20, 60%, 48%) | |
hsl(20, 80%, 48%) | |
hsl(20, 100%, 48%) |
#cd5f29 Color Usage In CSS
body { color: #cd5f29; } p { color: rgb(205, 95, 41); } header { border-bottom:1px solid #cd5f29; }