#38e53f Color
Color Codes | |
---|---|
Hex Code | #38e53f |
RGB Code | rgb(56, 229, 63) |
HSL Code | hsl(122, 77%, 56%) |
#38e53f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(56, 229, 63); }
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(122, 77%, 56%); }
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 #38e53f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(56, 229, 63, 10%) | #38e53f1a | |
rgb(56, 229, 63, 20%) | #38e53f33 | |
rgb(56, 229, 63, 40%) | #38e53f4C | |
rgb(56, 229, 63, 60%) | #38e53f99 | |
rgb(56, 229, 63, 80%) | #38e53fCC | |
rgb(56, 229, 63, 100%) | #38e53fFF |
Saturated and desaturated colors of #38e53f
HSL Code | Preview |
---|---|
hsl(122, 10%, 56%) | |
hsl(122, 20%, 56%) | |
hsl(122, 40%, 56%) | |
hsl(122, 60%, 56%) | |
hsl(122, 80%, 56%) | |
hsl(122, 100%, 56%) |
#38e53f Color Usage In CSS
body { color: #38e53f; } p { color: rgb(56, 229, 63); } header { border-bottom:1px solid #38e53f; }