#05f407 Color
Color Codes | |
---|---|
Hex Code | #05f407 |
RGB Code | rgb(05, 244, 07) |
HSL Code | hsl(121, 96%, 49%) |
#05f407 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(05, 244, 07); }
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(121, 96%, 49%); }
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 #05f407
RGB Code | Hex Code | Preview |
---|---|---|
rgb(05, 244, 07, 10%) | #05f4071a | |
rgb(05, 244, 07, 20%) | #05f40733 | |
rgb(05, 244, 07, 40%) | #05f4074C | |
rgb(05, 244, 07, 60%) | #05f40799 | |
rgb(05, 244, 07, 80%) | #05f407CC | |
rgb(05, 244, 07, 100%) | #05f407FF |
Saturated and desaturated colors of #05f407
HSL Code | Preview |
---|---|
hsl(121, 10%, 49%) | |
hsl(121, 20%, 49%) | |
hsl(121, 40%, 49%) | |
hsl(121, 60%, 49%) | |
hsl(121, 80%, 49%) | |
hsl(121, 100%, 49%) |
#05f407 Color Usage In CSS
body { color: #05f407; } p { color: rgb(05, 244, 07); } header { border-bottom:1px solid #05f407; }