#f09a90 Color
Color Codes | |
---|---|
Hex Code | #f09a90 |
RGB Code | rgb(240, 154, 144) |
HSL Code | hsl(6, 76%, 75%) |
#f09a90 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(240, 154, 144); }
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(6, 76%, 75%); }
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 #f09a90
RGB Code | Hex Code | Preview |
---|---|---|
rgb(240, 154, 144, 10%) | #f09a901a | |
rgb(240, 154, 144, 20%) | #f09a9033 | |
rgb(240, 154, 144, 40%) | #f09a904C | |
rgb(240, 154, 144, 60%) | #f09a9099 | |
rgb(240, 154, 144, 80%) | #f09a90CC | |
rgb(240, 154, 144, 100%) | #f09a90FF |
Saturated and desaturated colors of #f09a90
HSL Code | Preview |
---|---|
hsl(6, 10%, 75%) | |
hsl(6, 20%, 75%) | |
hsl(6, 40%, 75%) | |
hsl(6, 60%, 75%) | |
hsl(6, 80%, 75%) | |
hsl(6, 100%, 75%) |
#f09a90 Color Usage In CSS
body { color: #f09a90; } p { color: rgb(240, 154, 144); } header { border-bottom:1px solid #f09a90; }