#3f44f6 Color
Color Codes | |
---|---|
Hex Code | #3f44f6 |
RGB Code | rgb(63, 68, 246) |
HSL Code | hsl(238, 91%, 61%) |
#3f44f6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(63, 68, 246); }
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(238, 91%, 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 #3f44f6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(63, 68, 246, 10%) | #3f44f61a | |
rgb(63, 68, 246, 20%) | #3f44f633 | |
rgb(63, 68, 246, 40%) | #3f44f64C | |
rgb(63, 68, 246, 60%) | #3f44f699 | |
rgb(63, 68, 246, 80%) | #3f44f6CC | |
rgb(63, 68, 246, 100%) | #3f44f6FF |
Saturated and desaturated colors of #3f44f6
HSL Code | Preview |
---|---|
hsl(238, 10%, 61%) | |
hsl(238, 20%, 61%) | |
hsl(238, 40%, 61%) | |
hsl(238, 60%, 61%) | |
hsl(238, 80%, 61%) | |
hsl(238, 100%, 61%) |
#3f44f6 Color Usage In CSS
body { color: #3f44f6; } p { color: rgb(63, 68, 246); } header { border-bottom:1px solid #3f44f6; }