#3f99bf Color
Color Codes | |
---|---|
Hex Code | #3f99bf |
RGB Code | rgb(63, 153, 191) |
HSL Code | hsl(198, 50%, 50%) |
#3f99bf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(63, 153, 191); }
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(198, 50%, 50%); }
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 #3f99bf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(63, 153, 191, 10%) | #3f99bf1a | |
rgb(63, 153, 191, 20%) | #3f99bf33 | |
rgb(63, 153, 191, 40%) | #3f99bf4C | |
rgb(63, 153, 191, 60%) | #3f99bf99 | |
rgb(63, 153, 191, 80%) | #3f99bfCC | |
rgb(63, 153, 191, 100%) | #3f99bfFF |
Saturated and desaturated colors of #3f99bf
HSL Code | Preview |
---|---|
hsl(198, 10%, 50%) | |
hsl(198, 20%, 50%) | |
hsl(198, 40%, 50%) | |
hsl(198, 60%, 50%) | |
hsl(198, 80%, 50%) | |
hsl(198, 100%, 50%) |
#3f99bf Color Usage In CSS
body { color: #3f99bf; } p { color: rgb(63, 153, 191); } header { border-bottom:1px solid #3f99bf; }