#f49883 Color
Color Codes | |
---|---|
Hex Code | #f49883 |
RGB Code | rgb(244, 152, 131) |
HSL Code | hsl(11, 84%, 74%) |
#f49883 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(244, 152, 131); }
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, 84%, 74%); }
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 #f49883
RGB Code | Hex Code | Preview |
---|---|---|
rgb(244, 152, 131, 10%) | #f498831a | |
rgb(244, 152, 131, 20%) | #f4988333 | |
rgb(244, 152, 131, 40%) | #f498834C | |
rgb(244, 152, 131, 60%) | #f4988399 | |
rgb(244, 152, 131, 80%) | #f49883CC | |
rgb(244, 152, 131, 100%) | #f49883FF |
Saturated and desaturated colors of #f49883
HSL Code | Preview |
---|---|
hsl(11, 10%, 74%) | |
hsl(11, 20%, 74%) | |
hsl(11, 40%, 74%) | |
hsl(11, 60%, 74%) | |
hsl(11, 80%, 74%) | |
hsl(11, 100%, 74%) |
#f49883 Color Usage In CSS
body { color: #f49883; } p { color: rgb(244, 152, 131); } header { border-bottom:1px solid #f49883; }