#45edcc Color
Color Codes | |
---|---|
Hex Code | #45edcc |
RGB Code | rgb(69, 237, 204) |
HSL Code | hsl(168, 82%, 60%) |
#45edcc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(69, 237, 204); }
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(168, 82%, 60%); }
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 #45edcc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(69, 237, 204, 10%) | #45edcc1a | |
rgb(69, 237, 204, 20%) | #45edcc33 | |
rgb(69, 237, 204, 40%) | #45edcc4C | |
rgb(69, 237, 204, 60%) | #45edcc99 | |
rgb(69, 237, 204, 80%) | #45edccCC | |
rgb(69, 237, 204, 100%) | #45edccFF |
Saturated and desaturated colors of #45edcc
HSL Code | Preview |
---|---|
hsl(168, 10%, 60%) | |
hsl(168, 20%, 60%) | |
hsl(168, 40%, 60%) | |
hsl(168, 60%, 60%) | |
hsl(168, 80%, 60%) | |
hsl(168, 100%, 60%) |
#45edcc Color Usage In CSS
body { color: #45edcc; } p { color: rgb(69, 237, 204); } header { border-bottom:1px solid #45edcc; }