#38b02b Color
Color Codes | |
---|---|
Hex Code | #38b02b |
RGB Code | rgb(56, 176, 43) |
HSL Code | hsl(114, 61%, 43%) |
#38b02b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(56, 176, 43); }
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(114, 61%, 43%); }
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 #38b02b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(56, 176, 43, 10%) | #38b02b1a | |
rgb(56, 176, 43, 20%) | #38b02b33 | |
rgb(56, 176, 43, 40%) | #38b02b4C | |
rgb(56, 176, 43, 60%) | #38b02b99 | |
rgb(56, 176, 43, 80%) | #38b02bCC | |
rgb(56, 176, 43, 100%) | #38b02bFF |
Saturated and desaturated colors of #38b02b
HSL Code | Preview |
---|---|
hsl(114, 10%, 43%) | |
hsl(114, 20%, 43%) | |
hsl(114, 40%, 43%) | |
hsl(114, 60%, 43%) | |
hsl(114, 80%, 43%) | |
hsl(114, 100%, 43%) |
#38b02b Color Usage In CSS
body { color: #38b02b; } p { color: rgb(56, 176, 43); } header { border-bottom:1px solid #38b02b; }