#62dff1 Color
Color Codes | |
---|---|
Hex Code | #62dff1 |
RGB Code | rgb(98, 223, 241) |
HSL Code | hsl(188, 84%, 66%) |
#62dff1 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(98, 223, 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(188, 84%, 66%); }
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 #62dff1
RGB Code | Hex Code | Preview |
---|---|---|
rgb(98, 223, 241, 10%) | #62dff11a | |
rgb(98, 223, 241, 20%) | #62dff133 | |
rgb(98, 223, 241, 40%) | #62dff14C | |
rgb(98, 223, 241, 60%) | #62dff199 | |
rgb(98, 223, 241, 80%) | #62dff1CC | |
rgb(98, 223, 241, 100%) | #62dff1FF |
Saturated and desaturated colors of #62dff1
HSL Code | Preview |
---|---|
hsl(188, 10%, 66%) | |
hsl(188, 20%, 66%) | |
hsl(188, 40%, 66%) | |
hsl(188, 60%, 66%) | |
hsl(188, 80%, 66%) | |
hsl(188, 100%, 66%) |
#62dff1 Color Usage In CSS
body { color: #62dff1; } p { color: rgb(98, 223, 241); } header { border-bottom:1px solid #62dff1; }