#f86392 Color
Color Codes | |
---|---|
Hex Code | #f86392 |
RGB Code | rgb(248, 99, 146) |
HSL Code | hsl(341, 91%, 68%) |
#f86392 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(248, 99, 146); }
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(341, 91%, 68%); }
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 #f86392
RGB Code | Hex Code | Preview |
---|---|---|
rgb(248, 99, 146, 10%) | #f863921a | |
rgb(248, 99, 146, 20%) | #f8639233 | |
rgb(248, 99, 146, 40%) | #f863924C | |
rgb(248, 99, 146, 60%) | #f8639299 | |
rgb(248, 99, 146, 80%) | #f86392CC | |
rgb(248, 99, 146, 100%) | #f86392FF |
Saturated and desaturated colors of #f86392
HSL Code | Preview |
---|---|
hsl(341, 10%, 68%) | |
hsl(341, 20%, 68%) | |
hsl(341, 40%, 68%) | |
hsl(341, 60%, 68%) | |
hsl(341, 80%, 68%) | |
hsl(341, 100%, 68%) |
#f86392 Color Usage In CSS
body { color: #f86392; } p { color: rgb(248, 99, 146); } header { border-bottom:1px solid #f86392; }