#ce7349 Color
Color Codes | |
---|---|
Hex Code | #ce7349 |
RGB Code | rgb(206, 115, 73) |
HSL Code | hsl(19, 58%, 55%) |
#ce7349 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(206, 115, 73); }
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(19, 58%, 55%); }
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 #ce7349
RGB Code | Hex Code | Preview |
---|---|---|
rgb(206, 115, 73, 10%) | #ce73491a | |
rgb(206, 115, 73, 20%) | #ce734933 | |
rgb(206, 115, 73, 40%) | #ce73494C | |
rgb(206, 115, 73, 60%) | #ce734999 | |
rgb(206, 115, 73, 80%) | #ce7349CC | |
rgb(206, 115, 73, 100%) | #ce7349FF |
Saturated and desaturated colors of #ce7349
HSL Code | Preview |
---|---|
hsl(19, 10%, 55%) | |
hsl(19, 20%, 55%) | |
hsl(19, 40%, 55%) | |
hsl(19, 60%, 55%) | |
hsl(19, 80%, 55%) | |
hsl(19, 100%, 55%) |
#ce7349 Color Usage In CSS
body { color: #ce7349; } p { color: rgb(206, 115, 73); } header { border-bottom:1px solid #ce7349; }