#14b443 Color
Color Codes | |
---|---|
Hex Code | #14b443 |
RGB Code | rgb(20, 180, 67) |
HSL Code | hsl(138, 80%, 39%) |
#14b443 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(20, 180, 67); }
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(138, 80%, 39%); }
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 #14b443
RGB Code | Hex Code | Preview |
---|---|---|
rgb(20, 180, 67, 10%) | #14b4431a | |
rgb(20, 180, 67, 20%) | #14b44333 | |
rgb(20, 180, 67, 40%) | #14b4434C | |
rgb(20, 180, 67, 60%) | #14b44399 | |
rgb(20, 180, 67, 80%) | #14b443CC | |
rgb(20, 180, 67, 100%) | #14b443FF |
Saturated and desaturated colors of #14b443
HSL Code | Preview |
---|---|
hsl(138, 10%, 39%) | |
hsl(138, 20%, 39%) | |
hsl(138, 40%, 39%) | |
hsl(138, 60%, 39%) | |
hsl(138, 80%, 39%) | |
hsl(138, 100%, 39%) |
#14b443 Color Usage In CSS
body { color: #14b443; } p { color: rgb(20, 180, 67); } header { border-bottom:1px solid #14b443; }