#10e7f0 Color
Color Codes | |
---|---|
Hex Code | #10e7f0 |
RGB Code | rgb(16, 231, 240) |
HSL Code | hsl(182, 88%, 50%) |
#10e7f0 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(16, 231, 240); }
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(182, 88%, 50%); }
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 #10e7f0
RGB Code | Hex Code | Preview |
---|---|---|
rgb(16, 231, 240, 10%) | #10e7f01a | |
rgb(16, 231, 240, 20%) | #10e7f033 | |
rgb(16, 231, 240, 40%) | #10e7f04C | |
rgb(16, 231, 240, 60%) | #10e7f099 | |
rgb(16, 231, 240, 80%) | #10e7f0CC | |
rgb(16, 231, 240, 100%) | #10e7f0FF |
Saturated and desaturated colors of #10e7f0
HSL Code | Preview |
---|---|
hsl(182, 10%, 50%) | |
hsl(182, 20%, 50%) | |
hsl(182, 40%, 50%) | |
hsl(182, 60%, 50%) | |
hsl(182, 80%, 50%) | |
hsl(182, 100%, 50%) |
#10e7f0 Color Usage In CSS
body { color: #10e7f0; } p { color: rgb(16, 231, 240); } header { border-bottom:1px solid #10e7f0; }