#3aeb02 Color
Color Codes | |
---|---|
Hex Code | #3aeb02 |
RGB Code | rgb(58, 235, 02) |
HSL Code | hsl(106, 98%, 46%) |
#3aeb02 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(58, 235, 02); }
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(106, 98%, 46%); }
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 #3aeb02
RGB Code | Hex Code | Preview |
---|---|---|
rgb(58, 235, 02, 10%) | #3aeb021a | |
rgb(58, 235, 02, 20%) | #3aeb0233 | |
rgb(58, 235, 02, 40%) | #3aeb024C | |
rgb(58, 235, 02, 60%) | #3aeb0299 | |
rgb(58, 235, 02, 80%) | #3aeb02CC | |
rgb(58, 235, 02, 100%) | #3aeb02FF |
Saturated and desaturated colors of #3aeb02
HSL Code | Preview |
---|---|
hsl(106, 10%, 46%) | |
hsl(106, 20%, 46%) | |
hsl(106, 40%, 46%) | |
hsl(106, 60%, 46%) | |
hsl(106, 80%, 46%) | |
hsl(106, 100%, 46%) |
#3aeb02 Color Usage In CSS
body { color: #3aeb02; } p { color: rgb(58, 235, 02); } header { border-bottom:1px solid #3aeb02; }