#fe8a24 Color
Color Codes | |
---|---|
Hex Code | #fe8a24 |
RGB Code | rgb(254, 138, 36) |
HSL Code | hsl(28, 99%, 57%) |
#fe8a24 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(254, 138, 36); }
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(28, 99%, 57%); }
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 #fe8a24
RGB Code | Hex Code | Preview |
---|---|---|
rgb(254, 138, 36, 10%) | #fe8a241a | |
rgb(254, 138, 36, 20%) | #fe8a2433 | |
rgb(254, 138, 36, 40%) | #fe8a244C | |
rgb(254, 138, 36, 60%) | #fe8a2499 | |
rgb(254, 138, 36, 80%) | #fe8a24CC | |
rgb(254, 138, 36, 100%) | #fe8a24FF |
Saturated and desaturated colors of #fe8a24
HSL Code | Preview |
---|---|
hsl(28, 10%, 57%) | |
hsl(28, 20%, 57%) | |
hsl(28, 40%, 57%) | |
hsl(28, 60%, 57%) | |
hsl(28, 80%, 57%) | |
hsl(28, 100%, 57%) |
#fe8a24 Color Usage In CSS
body { color: #fe8a24; } p { color: rgb(254, 138, 36); } header { border-bottom:1px solid #fe8a24; }