#fa8829 Color
Color Codes | |
---|---|
Hex Code | #fa8829 |
RGB Code | rgb(250, 136, 41) |
HSL Code | hsl(27, 95%, 57%) |
#fa8829 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(250, 136, 41); }
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(27, 95%, 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 #fa8829
RGB Code | Hex Code | Preview |
---|---|---|
rgb(250, 136, 41, 10%) | #fa88291a | |
rgb(250, 136, 41, 20%) | #fa882933 | |
rgb(250, 136, 41, 40%) | #fa88294C | |
rgb(250, 136, 41, 60%) | #fa882999 | |
rgb(250, 136, 41, 80%) | #fa8829CC | |
rgb(250, 136, 41, 100%) | #fa8829FF |
Saturated and desaturated colors of #fa8829
HSL Code | Preview |
---|---|
hsl(27, 10%, 57%) | |
hsl(27, 20%, 57%) | |
hsl(27, 40%, 57%) | |
hsl(27, 60%, 57%) | |
hsl(27, 80%, 57%) | |
hsl(27, 100%, 57%) |
#fa8829 Color Usage In CSS
body { color: #fa8829; } p { color: rgb(250, 136, 41); } header { border-bottom:1px solid #fa8829; }