#ce4041 Color
Color Codes | |
---|---|
Hex Code | #ce4041 |
RGB Code | rgb(206, 64, 65) |
HSL Code | hsl(360, 59%, 53%) |
#ce4041 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(206, 64, 65); }
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(360, 59%, 53%); }
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 #ce4041
RGB Code | Hex Code | Preview |
---|---|---|
rgb(206, 64, 65, 10%) | #ce40411a | |
rgb(206, 64, 65, 20%) | #ce404133 | |
rgb(206, 64, 65, 40%) | #ce40414C | |
rgb(206, 64, 65, 60%) | #ce404199 | |
rgb(206, 64, 65, 80%) | #ce4041CC | |
rgb(206, 64, 65, 100%) | #ce4041FF |
Saturated and desaturated colors of #ce4041
HSL Code | Preview |
---|---|
hsl(360, 10%, 53%) | |
hsl(360, 20%, 53%) | |
hsl(360, 40%, 53%) | |
hsl(360, 60%, 53%) | |
hsl(360, 80%, 53%) | |
hsl(360, 100%, 53%) |
#ce4041 Color Usage In CSS
body { color: #ce4041; } p { color: rgb(206, 64, 65); } header { border-bottom:1px solid #ce4041; }