#f9134e Color
Color Codes | |
---|---|
Hex Code | #f9134e |
RGB Code | rgb(249, 19, 78) |
HSL Code | hsl(345, 95%, 53%) |
#f9134e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(249, 19, 78); }
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(345, 95%, 53%); }
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 #f9134e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(249, 19, 78, 10%) | #f9134e1a | |
rgb(249, 19, 78, 20%) | #f9134e33 | |
rgb(249, 19, 78, 40%) | #f9134e4C | |
rgb(249, 19, 78, 60%) | #f9134e99 | |
rgb(249, 19, 78, 80%) | #f9134eCC | |
rgb(249, 19, 78, 100%) | #f9134eFF |
Saturated and desaturated colors of #f9134e
HSL Code | Preview |
---|---|
hsl(345, 10%, 53%) | |
hsl(345, 20%, 53%) | |
hsl(345, 40%, 53%) | |
hsl(345, 60%, 53%) | |
hsl(345, 80%, 53%) | |
hsl(345, 100%, 53%) |
#f9134e Color Usage In CSS
body { color: #f9134e; } p { color: rgb(249, 19, 78); } header { border-bottom:1px solid #f9134e; }