#f39bae Color
Color Codes | |
---|---|
Hex Code | #f39bae |
RGB Code | rgb(243, 155, 174) |
HSL Code | hsl(347, 79%, 78%) |
#f39bae Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(243, 155, 174); }
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, 79%, 78%); }
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 #f39bae
RGB Code | Hex Code | Preview |
---|---|---|
rgb(243, 155, 174, 10%) | #f39bae1a | |
rgb(243, 155, 174, 20%) | #f39bae33 | |
rgb(243, 155, 174, 40%) | #f39bae4C | |
rgb(243, 155, 174, 60%) | #f39bae99 | |
rgb(243, 155, 174, 80%) | #f39baeCC | |
rgb(243, 155, 174, 100%) | #f39baeFF |
Saturated and desaturated colors of #f39bae
HSL Code | Preview |
---|---|
hsl(347, 10%, 78%) | |
hsl(347, 20%, 78%) | |
hsl(347, 40%, 78%) | |
hsl(347, 60%, 78%) | |
hsl(347, 80%, 78%) | |
hsl(347, 100%, 78%) |
#f39bae Color Usage In CSS
body { color: #f39bae; } p { color: rgb(243, 155, 174); } header { border-bottom:1px solid #f39bae; }