#61f380 Color
Color Codes | |
---|---|
Hex Code | #61f380 |
RGB Code | rgb(97, 243, 128) |
HSL Code | hsl(133, 86%, 67%) |
#61f380 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(97, 243, 128); }
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(133, 86%, 67%); }
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 #61f380
RGB Code | Hex Code | Preview |
---|---|---|
rgb(97, 243, 128, 10%) | #61f3801a | |
rgb(97, 243, 128, 20%) | #61f38033 | |
rgb(97, 243, 128, 40%) | #61f3804C | |
rgb(97, 243, 128, 60%) | #61f38099 | |
rgb(97, 243, 128, 80%) | #61f380CC | |
rgb(97, 243, 128, 100%) | #61f380FF |
Saturated and desaturated colors of #61f380
HSL Code | Preview |
---|---|
hsl(133, 10%, 67%) | |
hsl(133, 20%, 67%) | |
hsl(133, 40%, 67%) | |
hsl(133, 60%, 67%) | |
hsl(133, 80%, 67%) | |
hsl(133, 100%, 67%) |
#61f380 Color Usage In CSS
body { color: #61f380; } p { color: rgb(97, 243, 128); } header { border-bottom:1px solid #61f380; }