#f94e27 Color
Color Codes | |
---|---|
Hex Code | #f94e27 |
RGB Code | rgb(249, 78, 39) |
HSL Code | hsl(11, 95%, 56%) |
#f94e27 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(249, 78, 39); }
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(11, 95%, 56%); }
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 #f94e27
RGB Code | Hex Code | Preview |
---|---|---|
rgb(249, 78, 39, 10%) | #f94e271a | |
rgb(249, 78, 39, 20%) | #f94e2733 | |
rgb(249, 78, 39, 40%) | #f94e274C | |
rgb(249, 78, 39, 60%) | #f94e2799 | |
rgb(249, 78, 39, 80%) | #f94e27CC | |
rgb(249, 78, 39, 100%) | #f94e27FF |
Saturated and desaturated colors of #f94e27
HSL Code | Preview |
---|---|
hsl(11, 10%, 56%) | |
hsl(11, 20%, 56%) | |
hsl(11, 40%, 56%) | |
hsl(11, 60%, 56%) | |
hsl(11, 80%, 56%) | |
hsl(11, 100%, 56%) |
#f94e27 Color Usage In CSS
body { color: #f94e27; } p { color: rgb(249, 78, 39); } header { border-bottom:1px solid #f94e27; }