#f64279 Color
Color Codes | |
---|---|
Hex Code | #f64279 |
RGB Code | rgb(246, 66, 121) |
HSL Code | hsl(342, 91%, 61%) |
#f64279 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(246, 66, 121); }
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(342, 91%, 61%); }
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 #f64279
RGB Code | Hex Code | Preview |
---|---|---|
rgb(246, 66, 121, 10%) | #f642791a | |
rgb(246, 66, 121, 20%) | #f6427933 | |
rgb(246, 66, 121, 40%) | #f642794C | |
rgb(246, 66, 121, 60%) | #f6427999 | |
rgb(246, 66, 121, 80%) | #f64279CC | |
rgb(246, 66, 121, 100%) | #f64279FF |
Saturated and desaturated colors of #f64279
HSL Code | Preview |
---|---|
hsl(342, 10%, 61%) | |
hsl(342, 20%, 61%) | |
hsl(342, 40%, 61%) | |
hsl(342, 60%, 61%) | |
hsl(342, 80%, 61%) | |
hsl(342, 100%, 61%) |
#f64279 Color Usage In CSS
body { color: #f64279; } p { color: rgb(246, 66, 121); } header { border-bottom:1px solid #f64279; }