#ec6510 Color
Color Codes | |
---|---|
Hex Code | #ec6510 |
RGB Code | rgb(236, 101, 16) |
HSL Code | hsl(23, 87%, 49%) |
#ec6510 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(236, 101, 16); }
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(23, 87%, 49%); }
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 #ec6510
RGB Code | Hex Code | Preview |
---|---|---|
rgb(236, 101, 16, 10%) | #ec65101a | |
rgb(236, 101, 16, 20%) | #ec651033 | |
rgb(236, 101, 16, 40%) | #ec65104C | |
rgb(236, 101, 16, 60%) | #ec651099 | |
rgb(236, 101, 16, 80%) | #ec6510CC | |
rgb(236, 101, 16, 100%) | #ec6510FF |
Saturated and desaturated colors of #ec6510
HSL Code | Preview |
---|---|
hsl(23, 10%, 49%) | |
hsl(23, 20%, 49%) | |
hsl(23, 40%, 49%) | |
hsl(23, 60%, 49%) | |
hsl(23, 80%, 49%) | |
hsl(23, 100%, 49%) |
#ec6510 Color Usage In CSS
body { color: #ec6510; } p { color: rgb(236, 101, 16); } header { border-bottom:1px solid #ec6510; }