#3eabf1 Color
Color Codes | |
---|---|
Hex Code | #3eabf1 |
RGB Code | rgb(62, 171, 241) |
HSL Code | hsl(203, 86%, 59%) |
#3eabf1 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(62, 171, 241); }
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(203, 86%, 59%); }
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 #3eabf1
RGB Code | Hex Code | Preview |
---|---|---|
rgb(62, 171, 241, 10%) | #3eabf11a | |
rgb(62, 171, 241, 20%) | #3eabf133 | |
rgb(62, 171, 241, 40%) | #3eabf14C | |
rgb(62, 171, 241, 60%) | #3eabf199 | |
rgb(62, 171, 241, 80%) | #3eabf1CC | |
rgb(62, 171, 241, 100%) | #3eabf1FF |
Saturated and desaturated colors of #3eabf1
HSL Code | Preview |
---|---|
hsl(203, 10%, 59%) | |
hsl(203, 20%, 59%) | |
hsl(203, 40%, 59%) | |
hsl(203, 60%, 59%) | |
hsl(203, 80%, 59%) | |
hsl(203, 100%, 59%) |
#3eabf1 Color Usage In CSS
body { color: #3eabf1; } p { color: rgb(62, 171, 241); } header { border-bottom:1px solid #3eabf1; }