#45d181 Color
Color Codes | |
---|---|
Hex Code | #45d181 |
RGB Code | rgb(69, 209, 129) |
HSL Code | hsl(146, 60%, 55%) |
#45d181 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(69, 209, 129); }
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(146, 60%, 55%); }
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 #45d181
RGB Code | Hex Code | Preview |
---|---|---|
rgb(69, 209, 129, 10%) | #45d1811a | |
rgb(69, 209, 129, 20%) | #45d18133 | |
rgb(69, 209, 129, 40%) | #45d1814C | |
rgb(69, 209, 129, 60%) | #45d18199 | |
rgb(69, 209, 129, 80%) | #45d181CC | |
rgb(69, 209, 129, 100%) | #45d181FF |
Saturated and desaturated colors of #45d181
HSL Code | Preview |
---|---|
hsl(146, 10%, 55%) | |
hsl(146, 20%, 55%) | |
hsl(146, 40%, 55%) | |
hsl(146, 60%, 55%) | |
hsl(146, 80%, 55%) | |
hsl(146, 100%, 55%) |
#45d181 Color Usage In CSS
body { color: #45d181; } p { color: rgb(69, 209, 129); } header { border-bottom:1px solid #45d181; }