#fa5f33 Color
Color Codes | |
---|---|
Hex Code | #fa5f33 |
RGB Code | rgb(250, 95, 51) |
HSL Code | hsl(13, 95%, 59%) |
#fa5f33 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(250, 95, 51); }
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(13, 95%, 59%); }
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 #fa5f33
RGB Code | Hex Code | Preview |
---|---|---|
rgb(250, 95, 51, 10%) | #fa5f331a | |
rgb(250, 95, 51, 20%) | #fa5f3333 | |
rgb(250, 95, 51, 40%) | #fa5f334C | |
rgb(250, 95, 51, 60%) | #fa5f3399 | |
rgb(250, 95, 51, 80%) | #fa5f33CC | |
rgb(250, 95, 51, 100%) | #fa5f33FF |
Saturated and desaturated colors of #fa5f33
HSL Code | Preview |
---|---|
hsl(13, 10%, 59%) | |
hsl(13, 20%, 59%) | |
hsl(13, 40%, 59%) | |
hsl(13, 60%, 59%) | |
hsl(13, 80%, 59%) | |
hsl(13, 100%, 59%) |
#fa5f33 Color Usage In CSS
body { color: #fa5f33; } p { color: rgb(250, 95, 51); } header { border-bottom:1px solid #fa5f33; }