#3bb4f7 Color
Color Codes | |
---|---|
Hex Code | #3bb4f7 |
RGB Code | rgb(59, 180, 247) |
HSL Code | hsl(201, 92%, 60%) |
#3bb4f7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(59, 180, 247); }
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(201, 92%, 60%); }
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 #3bb4f7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(59, 180, 247, 10%) | #3bb4f71a | |
rgb(59, 180, 247, 20%) | #3bb4f733 | |
rgb(59, 180, 247, 40%) | #3bb4f74C | |
rgb(59, 180, 247, 60%) | #3bb4f799 | |
rgb(59, 180, 247, 80%) | #3bb4f7CC | |
rgb(59, 180, 247, 100%) | #3bb4f7FF |
Saturated and desaturated colors of #3bb4f7
HSL Code | Preview |
---|---|
hsl(201, 10%, 60%) | |
hsl(201, 20%, 60%) | |
hsl(201, 40%, 60%) | |
hsl(201, 60%, 60%) | |
hsl(201, 80%, 60%) | |
hsl(201, 100%, 60%) |
#3bb4f7 Color Usage In CSS
body { color: #3bb4f7; } p { color: rgb(59, 180, 247); } header { border-bottom:1px solid #3bb4f7; }