#33cd81 Color
Color Codes | |
---|---|
Hex Code | #33cd81 |
RGB Code | rgb(51, 205, 129) |
HSL Code | hsl(150, 61%, 50%) |
#33cd81 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(51, 205, 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(150, 61%, 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 #33cd81
RGB Code | Hex Code | Preview |
---|---|---|
rgb(51, 205, 129, 10%) | #33cd811a | |
rgb(51, 205, 129, 20%) | #33cd8133 | |
rgb(51, 205, 129, 40%) | #33cd814C | |
rgb(51, 205, 129, 60%) | #33cd8199 | |
rgb(51, 205, 129, 80%) | #33cd81CC | |
rgb(51, 205, 129, 100%) | #33cd81FF |
Saturated and desaturated colors of #33cd81
HSL Code | Preview |
---|---|
hsl(150, 10%, 50%) | |
hsl(150, 20%, 50%) | |
hsl(150, 40%, 50%) | |
hsl(150, 60%, 50%) | |
hsl(150, 80%, 50%) | |
hsl(150, 100%, 50%) |
#33cd81 Color Usage In CSS
body { color: #33cd81; } p { color: rgb(51, 205, 129); } header { border-bottom:1px solid #33cd81; }