#3e8bf3 Color
Color Codes | |
---|---|
Hex Code | #3e8bf3 |
RGB Code | rgb(62, 139, 243) |
HSL Code | hsl(214, 88%, 60%) |
#3e8bf3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(62, 139, 243); }
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(214, 88%, 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 #3e8bf3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(62, 139, 243, 10%) | #3e8bf31a | |
rgb(62, 139, 243, 20%) | #3e8bf333 | |
rgb(62, 139, 243, 40%) | #3e8bf34C | |
rgb(62, 139, 243, 60%) | #3e8bf399 | |
rgb(62, 139, 243, 80%) | #3e8bf3CC | |
rgb(62, 139, 243, 100%) | #3e8bf3FF |
Saturated and desaturated colors of #3e8bf3
HSL Code | Preview |
---|---|
hsl(214, 10%, 60%) | |
hsl(214, 20%, 60%) | |
hsl(214, 40%, 60%) | |
hsl(214, 60%, 60%) | |
hsl(214, 80%, 60%) | |
hsl(214, 100%, 60%) |
#3e8bf3 Color Usage In CSS
body { color: #3e8bf3; } p { color: rgb(62, 139, 243); } header { border-bottom:1px solid #3e8bf3; }