#3f09fe Color
Color Codes | |
---|---|
Hex Code | #3f09fe |
RGB Code | rgb(63, 09, 254) |
HSL Code | hsl(253, 99%, 52%) |
#3f09fe Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(63, 09, 254); }
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(253, 99%, 52%); }
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 #3f09fe
RGB Code | Hex Code | Preview |
---|---|---|
rgb(63, 09, 254, 10%) | #3f09fe1a | |
rgb(63, 09, 254, 20%) | #3f09fe33 | |
rgb(63, 09, 254, 40%) | #3f09fe4C | |
rgb(63, 09, 254, 60%) | #3f09fe99 | |
rgb(63, 09, 254, 80%) | #3f09feCC | |
rgb(63, 09, 254, 100%) | #3f09feFF |
Saturated and desaturated colors of #3f09fe
HSL Code | Preview |
---|---|
hsl(253, 10%, 52%) | |
hsl(253, 20%, 52%) | |
hsl(253, 40%, 52%) | |
hsl(253, 60%, 52%) | |
hsl(253, 80%, 52%) | |
hsl(253, 100%, 52%) |
#3f09fe Color Usage In CSS
body { color: #3f09fe; } p { color: rgb(63, 09, 254); } header { border-bottom:1px solid #3f09fe; }