#75ecf4 Color
Color Codes | |
---|---|
Hex Code | #75ecf4 |
RGB Code | rgb(117, 236, 244) |
HSL Code | hsl(184, 85%, 71%) |
#75ecf4 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(117, 236, 244); }
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(184, 85%, 71%); }
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 #75ecf4
RGB Code | Hex Code | Preview |
---|---|---|
rgb(117, 236, 244, 10%) | #75ecf41a | |
rgb(117, 236, 244, 20%) | #75ecf433 | |
rgb(117, 236, 244, 40%) | #75ecf44C | |
rgb(117, 236, 244, 60%) | #75ecf499 | |
rgb(117, 236, 244, 80%) | #75ecf4CC | |
rgb(117, 236, 244, 100%) | #75ecf4FF |
Saturated and desaturated colors of #75ecf4
HSL Code | Preview |
---|---|
hsl(184, 10%, 71%) | |
hsl(184, 20%, 71%) | |
hsl(184, 40%, 71%) | |
hsl(184, 60%, 71%) | |
hsl(184, 80%, 71%) | |
hsl(184, 100%, 71%) |
#75ecf4 Color Usage In CSS
body { color: #75ecf4; } p { color: rgb(117, 236, 244); } header { border-bottom:1px solid #75ecf4; }