#f93e68 Color
Color Codes | |
---|---|
Hex Code | #f93e68 |
RGB Code | rgb(249, 62, 104) |
HSL Code | hsl(347, 94%, 61%) |
#f93e68 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(249, 62, 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(347, 94%, 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 #f93e68
RGB Code | Hex Code | Preview |
---|---|---|
rgb(249, 62, 104, 10%) | #f93e681a | |
rgb(249, 62, 104, 20%) | #f93e6833 | |
rgb(249, 62, 104, 40%) | #f93e684C | |
rgb(249, 62, 104, 60%) | #f93e6899 | |
rgb(249, 62, 104, 80%) | #f93e68CC | |
rgb(249, 62, 104, 100%) | #f93e68FF |
Saturated and desaturated colors of #f93e68
HSL Code | Preview |
---|---|
hsl(347, 10%, 61%) | |
hsl(347, 20%, 61%) | |
hsl(347, 40%, 61%) | |
hsl(347, 60%, 61%) | |
hsl(347, 80%, 61%) | |
hsl(347, 100%, 61%) |
#f93e68 Color Usage In CSS
body { color: #f93e68; } p { color: rgb(249, 62, 104); } header { border-bottom:1px solid #f93e68; }