#fe3909 Color
Color Codes | |
---|---|
Hex Code | #fe3909 |
RGB Code | rgb(254, 57, 09) |
HSL Code | hsl(12, 99%, 52%) |
#fe3909 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(254, 57, 09); }
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, 99%, 52%); }
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 #fe3909
RGB Code | Hex Code | Preview |
---|---|---|
rgb(254, 57, 09, 10%) | #fe39091a | |
rgb(254, 57, 09, 20%) | #fe390933 | |
rgb(254, 57, 09, 40%) | #fe39094C | |
rgb(254, 57, 09, 60%) | #fe390999 | |
rgb(254, 57, 09, 80%) | #fe3909CC | |
rgb(254, 57, 09, 100%) | #fe3909FF |
Saturated and desaturated colors of #fe3909
HSL Code | Preview |
---|---|
hsl(12, 10%, 52%) | |
hsl(12, 20%, 52%) | |
hsl(12, 40%, 52%) | |
hsl(12, 60%, 52%) | |
hsl(12, 80%, 52%) | |
hsl(12, 100%, 52%) |
#fe3909 Color Usage In CSS
body { color: #fe3909; } p { color: rgb(254, 57, 09); } header { border-bottom:1px solid #fe3909; }