#2ba669 Color
Color Codes | |
---|---|
Hex Code | #2ba669 |
RGB Code | rgb(43, 166, 105) |
HSL Code | hsl(150, 59%, 41%) |
#2ba669 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(43, 166, 105); }
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, 59%, 41%); }
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 #2ba669
RGB Code | Hex Code | Preview |
---|---|---|
rgb(43, 166, 105, 10%) | #2ba6691a | |
rgb(43, 166, 105, 20%) | #2ba66933 | |
rgb(43, 166, 105, 40%) | #2ba6694C | |
rgb(43, 166, 105, 60%) | #2ba66999 | |
rgb(43, 166, 105, 80%) | #2ba669CC | |
rgb(43, 166, 105, 100%) | #2ba669FF |
Saturated and desaturated colors of #2ba669
HSL Code | Preview |
---|---|
hsl(150, 10%, 41%) | |
hsl(150, 20%, 41%) | |
hsl(150, 40%, 41%) | |
hsl(150, 60%, 41%) | |
hsl(150, 80%, 41%) | |
hsl(150, 100%, 41%) |
#2ba669 Color Usage In CSS
body { color: #2ba669; } p { color: rgb(43, 166, 105); } header { border-bottom:1px solid #2ba669; }