#f15068 Color
Color Codes | |
---|---|
Hex Code | #f15068 |
RGB Code | rgb(241, 80, 104) |
HSL Code | hsl(351, 85%, 63%) |
#f15068 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(241, 80, 104); }
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(351, 85%, 63%); }
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 #f15068
RGB Code | Hex Code | Preview |
---|---|---|
rgb(241, 80, 104, 10%) | #f150681a | |
rgb(241, 80, 104, 20%) | #f1506833 | |
rgb(241, 80, 104, 40%) | #f150684C | |
rgb(241, 80, 104, 60%) | #f1506899 | |
rgb(241, 80, 104, 80%) | #f15068CC | |
rgb(241, 80, 104, 100%) | #f15068FF |
Saturated and desaturated colors of #f15068
HSL Code | Preview |
---|---|
hsl(351, 10%, 63%) | |
hsl(351, 20%, 63%) | |
hsl(351, 40%, 63%) | |
hsl(351, 60%, 63%) | |
hsl(351, 80%, 63%) | |
hsl(351, 100%, 63%) |
#f15068 Color Usage In CSS
body { color: #f15068; } p { color: rgb(241, 80, 104); } header { border-bottom:1px solid #f15068; }