#41c174 Color
Color Codes | |
---|---|
Hex Code | #41c174 |
RGB Code | rgb(65, 193, 116) |
HSL Code | hsl(144, 51%, 51%) |
#41c174 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(65, 193, 116); }
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(144, 51%, 51%); }
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 #41c174
RGB Code | Hex Code | Preview |
---|---|---|
rgb(65, 193, 116, 10%) | #41c1741a | |
rgb(65, 193, 116, 20%) | #41c17433 | |
rgb(65, 193, 116, 40%) | #41c1744C | |
rgb(65, 193, 116, 60%) | #41c17499 | |
rgb(65, 193, 116, 80%) | #41c174CC | |
rgb(65, 193, 116, 100%) | #41c174FF |
Saturated and desaturated colors of #41c174
HSL Code | Preview |
---|---|
hsl(144, 10%, 51%) | |
hsl(144, 20%, 51%) | |
hsl(144, 40%, 51%) | |
hsl(144, 60%, 51%) | |
hsl(144, 80%, 51%) | |
hsl(144, 100%, 51%) |
#41c174 Color Usage In CSS
body { color: #41c174; } p { color: rgb(65, 193, 116); } header { border-bottom:1px solid #41c174; }