#ea3e22 Color
Color Codes | |
---|---|
Hex Code | #ea3e22 |
RGB Code | rgb(234, 62, 34) |
HSL Code | hsl(8, 83%, 53%) |
#ea3e22 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(234, 62, 34); }
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(8, 83%, 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 #ea3e22
RGB Code | Hex Code | Preview |
---|---|---|
rgb(234, 62, 34, 10%) | #ea3e221a | |
rgb(234, 62, 34, 20%) | #ea3e2233 | |
rgb(234, 62, 34, 40%) | #ea3e224C | |
rgb(234, 62, 34, 60%) | #ea3e2299 | |
rgb(234, 62, 34, 80%) | #ea3e22CC | |
rgb(234, 62, 34, 100%) | #ea3e22FF |
Saturated and desaturated colors of #ea3e22
HSL Code | Preview |
---|---|
hsl(8, 10%, 53%) | |
hsl(8, 20%, 53%) | |
hsl(8, 40%, 53%) | |
hsl(8, 60%, 53%) | |
hsl(8, 80%, 53%) | |
hsl(8, 100%, 53%) |
#ea3e22 Color Usage In CSS
body { color: #ea3e22; } p { color: rgb(234, 62, 34); } header { border-bottom:1px solid #ea3e22; }