#f33259 Color
Color Codes | |
---|---|
Hex Code | #f33259 |
RGB Code | rgb(243, 50, 89) |
HSL Code | hsl(348, 89%, 57%) |
#f33259 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(243, 50, 89); }
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(348, 89%, 57%); }
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 #f33259
RGB Code | Hex Code | Preview |
---|---|---|
rgb(243, 50, 89, 10%) | #f332591a | |
rgb(243, 50, 89, 20%) | #f3325933 | |
rgb(243, 50, 89, 40%) | #f332594C | |
rgb(243, 50, 89, 60%) | #f3325999 | |
rgb(243, 50, 89, 80%) | #f33259CC | |
rgb(243, 50, 89, 100%) | #f33259FF |
Saturated and desaturated colors of #f33259
HSL Code | Preview |
---|---|
hsl(348, 10%, 57%) | |
hsl(348, 20%, 57%) | |
hsl(348, 40%, 57%) | |
hsl(348, 60%, 57%) | |
hsl(348, 80%, 57%) | |
hsl(348, 100%, 57%) |
#f33259 Color Usage In CSS
body { color: #f33259; } p { color: rgb(243, 50, 89); } header { border-bottom:1px solid #f33259; }