#f46a55 Color
Color Codes | |
---|---|
Hex Code | #f46a55 |
RGB Code | rgb(244, 106, 85) |
HSL Code | hsl(8, 88%, 65%) |
#f46a55 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(244, 106, 85); }
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(8, 88%, 65%); }
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 #f46a55
RGB Code | Hex Code | Preview |
---|---|---|
rgb(244, 106, 85, 10%) | #f46a551a | |
rgb(244, 106, 85, 20%) | #f46a5533 | |
rgb(244, 106, 85, 40%) | #f46a554C | |
rgb(244, 106, 85, 60%) | #f46a5599 | |
rgb(244, 106, 85, 80%) | #f46a55CC | |
rgb(244, 106, 85, 100%) | #f46a55FF |
Saturated and desaturated colors of #f46a55
HSL Code | Preview |
---|---|
hsl(8, 10%, 65%) | |
hsl(8, 20%, 65%) | |
hsl(8, 40%, 65%) | |
hsl(8, 60%, 65%) | |
hsl(8, 80%, 65%) | |
hsl(8, 100%, 65%) |
#f46a55 Color Usage In CSS
body { color: #f46a55; } p { color: rgb(244, 106, 85); } header { border-bottom:1px solid #f46a55; }