#e55948 Color
Color Codes | |
---|---|
Hex Code | #e55948 |
RGB Code | rgb(229, 89, 72) |
HSL Code | hsl(6, 75%, 59%) |
#e55948 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(229, 89, 72); }
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(6, 75%, 59%); }
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 #e55948
RGB Code | Hex Code | Preview |
---|---|---|
rgb(229, 89, 72, 10%) | #e559481a | |
rgb(229, 89, 72, 20%) | #e5594833 | |
rgb(229, 89, 72, 40%) | #e559484C | |
rgb(229, 89, 72, 60%) | #e5594899 | |
rgb(229, 89, 72, 80%) | #e55948CC | |
rgb(229, 89, 72, 100%) | #e55948FF |
Saturated and desaturated colors of #e55948
HSL Code | Preview |
---|---|
hsl(6, 10%, 59%) | |
hsl(6, 20%, 59%) | |
hsl(6, 40%, 59%) | |
hsl(6, 60%, 59%) | |
hsl(6, 80%, 59%) | |
hsl(6, 100%, 59%) |
#e55948 Color Usage In CSS
body { color: #e55948; } p { color: rgb(229, 89, 72); } header { border-bottom:1px solid #e55948; }