#10ecf3 Color
Color Codes | |
---|---|
Hex Code | #10ecf3 |
RGB Code | rgb(16, 236, 243) |
HSL Code | hsl(182, 90%, 51%) |
#10ecf3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(16, 236, 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(182, 90%, 51%); }
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 #10ecf3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(16, 236, 243, 10%) | #10ecf31a | |
rgb(16, 236, 243, 20%) | #10ecf333 | |
rgb(16, 236, 243, 40%) | #10ecf34C | |
rgb(16, 236, 243, 60%) | #10ecf399 | |
rgb(16, 236, 243, 80%) | #10ecf3CC | |
rgb(16, 236, 243, 100%) | #10ecf3FF |
Saturated and desaturated colors of #10ecf3
HSL Code | Preview |
---|---|
hsl(182, 10%, 51%) | |
hsl(182, 20%, 51%) | |
hsl(182, 40%, 51%) | |
hsl(182, 60%, 51%) | |
hsl(182, 80%, 51%) | |
hsl(182, 100%, 51%) |
#10ecf3 Color Usage In CSS
body { color: #10ecf3; } p { color: rgb(16, 236, 243); } header { border-bottom:1px solid #10ecf3; }