#34bf59 Color
Color Codes | |
---|---|
Hex Code | #34bf59 |
RGB Code | rgb(52, 191, 89) |
HSL Code | hsl(136, 57%, 48%) |
#34bf59 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(52, 191, 89); }
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(136, 57%, 48%); }
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 #34bf59
RGB Code | Hex Code | Preview |
---|---|---|
rgb(52, 191, 89, 10%) | #34bf591a | |
rgb(52, 191, 89, 20%) | #34bf5933 | |
rgb(52, 191, 89, 40%) | #34bf594C | |
rgb(52, 191, 89, 60%) | #34bf5999 | |
rgb(52, 191, 89, 80%) | #34bf59CC | |
rgb(52, 191, 89, 100%) | #34bf59FF |
Saturated and desaturated colors of #34bf59
HSL Code | Preview |
---|---|
hsl(136, 10%, 48%) | |
hsl(136, 20%, 48%) | |
hsl(136, 40%, 48%) | |
hsl(136, 60%, 48%) | |
hsl(136, 80%, 48%) | |
hsl(136, 100%, 48%) |
#34bf59 Color Usage In CSS
body { color: #34bf59; } p { color: rgb(52, 191, 89); } header { border-bottom:1px solid #34bf59; }