#eb5935 Color
Color Codes | |
---|---|
Hex Code | #eb5935 |
RGB Code | rgb(235, 89, 53) |
HSL Code | hsl(12, 82%, 56%) |
#eb5935 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(235, 89, 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(12, 82%, 56%); }
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 #eb5935
RGB Code | Hex Code | Preview |
---|---|---|
rgb(235, 89, 53, 10%) | #eb59351a | |
rgb(235, 89, 53, 20%) | #eb593533 | |
rgb(235, 89, 53, 40%) | #eb59354C | |
rgb(235, 89, 53, 60%) | #eb593599 | |
rgb(235, 89, 53, 80%) | #eb5935CC | |
rgb(235, 89, 53, 100%) | #eb5935FF |
Saturated and desaturated colors of #eb5935
HSL Code | Preview |
---|---|
hsl(12, 10%, 56%) | |
hsl(12, 20%, 56%) | |
hsl(12, 40%, 56%) | |
hsl(12, 60%, 56%) | |
hsl(12, 80%, 56%) | |
hsl(12, 100%, 56%) |
#eb5935 Color Usage In CSS
body { color: #eb5935; } p { color: rgb(235, 89, 53); } header { border-bottom:1px solid #eb5935; }