#fd401a Color
Color Codes | |
---|---|
Hex Code | #fd401a |
RGB Code | rgb(253, 64, 26) |
HSL Code | hsl(10, 98%, 55%) |
#fd401a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(253, 64, 26); }
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(10, 98%, 55%); }
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 #fd401a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(253, 64, 26, 10%) | #fd401a1a | |
rgb(253, 64, 26, 20%) | #fd401a33 | |
rgb(253, 64, 26, 40%) | #fd401a4C | |
rgb(253, 64, 26, 60%) | #fd401a99 | |
rgb(253, 64, 26, 80%) | #fd401aCC | |
rgb(253, 64, 26, 100%) | #fd401aFF |
Saturated and desaturated colors of #fd401a
HSL Code | Preview |
---|---|
hsl(10, 10%, 55%) | |
hsl(10, 20%, 55%) | |
hsl(10, 40%, 55%) | |
hsl(10, 60%, 55%) | |
hsl(10, 80%, 55%) | |
hsl(10, 100%, 55%) |
#fd401a Color Usage In CSS
body { color: #fd401a; } p { color: rgb(253, 64, 26); } header { border-bottom:1px solid #fd401a; }