#41c4b0 Color
Color Codes | |
---|---|
Hex Code | #41c4b0 |
RGB Code | rgb(65, 196, 176) |
HSL Code | hsl(171, 53%, 51%) |
#41c4b0 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(65, 196, 176); }
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(171, 53%, 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 #41c4b0
RGB Code | Hex Code | Preview |
---|---|---|
rgb(65, 196, 176, 10%) | #41c4b01a | |
rgb(65, 196, 176, 20%) | #41c4b033 | |
rgb(65, 196, 176, 40%) | #41c4b04C | |
rgb(65, 196, 176, 60%) | #41c4b099 | |
rgb(65, 196, 176, 80%) | #41c4b0CC | |
rgb(65, 196, 176, 100%) | #41c4b0FF |
Saturated and desaturated colors of #41c4b0
HSL Code | Preview |
---|---|
hsl(171, 10%, 51%) | |
hsl(171, 20%, 51%) | |
hsl(171, 40%, 51%) | |
hsl(171, 60%, 51%) | |
hsl(171, 80%, 51%) | |
hsl(171, 100%, 51%) |
#41c4b0 Color Usage In CSS
body { color: #41c4b0; } p { color: rgb(65, 196, 176); } header { border-bottom:1px solid #41c4b0; }