#74b881 Color
Color Codes | |
---|---|
Hex Code | #74b881 |
RGB Code | rgb(116, 184, 129) |
HSL Code | hsl(131, 32%, 59%) |
#74b881 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(116, 184, 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(131, 32%, 59%); }
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 #74b881
RGB Code | Hex Code | Preview |
---|---|---|
rgb(116, 184, 129, 10%) | #74b8811a | |
rgb(116, 184, 129, 20%) | #74b88133 | |
rgb(116, 184, 129, 40%) | #74b8814C | |
rgb(116, 184, 129, 60%) | #74b88199 | |
rgb(116, 184, 129, 80%) | #74b881CC | |
rgb(116, 184, 129, 100%) | #74b881FF |
Saturated and desaturated colors of #74b881
HSL Code | Preview |
---|---|
hsl(131, 10%, 59%) | |
hsl(131, 20%, 59%) | |
hsl(131, 40%, 59%) | |
hsl(131, 60%, 59%) | |
hsl(131, 80%, 59%) | |
hsl(131, 100%, 59%) |
#74b881 Color Usage In CSS
body { color: #74b881; } p { color: rgb(116, 184, 129); } header { border-bottom:1px solid #74b881; }