#3fe635 Color
Color Codes | |
---|---|
Hex Code | #3fe635 |
RGB Code | rgb(63, 230, 53) |
HSL Code | hsl(117, 78%, 55%) |
#3fe635 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(63, 230, 53); }
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(117, 78%, 55%); }
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 #3fe635
RGB Code | Hex Code | Preview |
---|---|---|
rgb(63, 230, 53, 10%) | #3fe6351a | |
rgb(63, 230, 53, 20%) | #3fe63533 | |
rgb(63, 230, 53, 40%) | #3fe6354C | |
rgb(63, 230, 53, 60%) | #3fe63599 | |
rgb(63, 230, 53, 80%) | #3fe635CC | |
rgb(63, 230, 53, 100%) | #3fe635FF |
Saturated and desaturated colors of #3fe635
HSL Code | Preview |
---|---|
hsl(117, 10%, 55%) | |
hsl(117, 20%, 55%) | |
hsl(117, 40%, 55%) | |
hsl(117, 60%, 55%) | |
hsl(117, 80%, 55%) | |
hsl(117, 100%, 55%) |
#3fe635 Color Usage In CSS
body { color: #3fe635; } p { color: rgb(63, 230, 53); } header { border-bottom:1px solid #3fe635; }