#e46f31 Color
Color Codes | |
---|---|
Hex Code | #e46f31 |
RGB Code | rgb(228, 111, 49) |
HSL Code | hsl(21, 77%, 54%) |
#e46f31 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(228, 111, 49); }
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(21, 77%, 54%); }
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 #e46f31
RGB Code | Hex Code | Preview |
---|---|---|
rgb(228, 111, 49, 10%) | #e46f311a | |
rgb(228, 111, 49, 20%) | #e46f3133 | |
rgb(228, 111, 49, 40%) | #e46f314C | |
rgb(228, 111, 49, 60%) | #e46f3199 | |
rgb(228, 111, 49, 80%) | #e46f31CC | |
rgb(228, 111, 49, 100%) | #e46f31FF |
Saturated and desaturated colors of #e46f31
HSL Code | Preview |
---|---|
hsl(21, 10%, 54%) | |
hsl(21, 20%, 54%) | |
hsl(21, 40%, 54%) | |
hsl(21, 60%, 54%) | |
hsl(21, 80%, 54%) | |
hsl(21, 100%, 54%) |
#e46f31 Color Usage In CSS
body { color: #e46f31; } p { color: rgb(228, 111, 49); } header { border-bottom:1px solid #e46f31; }