#fa6c01 Color
Color Codes | |
---|---|
Hex Code | #fa6c01 |
RGB Code | rgb(250, 108, 01) |
HSL Code | hsl(26, 99%, 49%) |
#fa6c01 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(250, 108, 01); }
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(26, 99%, 49%); }
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 #fa6c01
RGB Code | Hex Code | Preview |
---|---|---|
rgb(250, 108, 01, 10%) | #fa6c011a | |
rgb(250, 108, 01, 20%) | #fa6c0133 | |
rgb(250, 108, 01, 40%) | #fa6c014C | |
rgb(250, 108, 01, 60%) | #fa6c0199 | |
rgb(250, 108, 01, 80%) | #fa6c01CC | |
rgb(250, 108, 01, 100%) | #fa6c01FF |
Saturated and desaturated colors of #fa6c01
HSL Code | Preview |
---|---|
hsl(26, 10%, 49%) | |
hsl(26, 20%, 49%) | |
hsl(26, 40%, 49%) | |
hsl(26, 60%, 49%) | |
hsl(26, 80%, 49%) | |
hsl(26, 100%, 49%) |
#fa6c01 Color Usage In CSS
body { color: #fa6c01; } p { color: rgb(250, 108, 01); } header { border-bottom:1px solid #fa6c01; }