#07fc11 Color
Color Codes | |
---|---|
Hex Code | #07fc11 |
RGB Code | rgb(07, 252, 17) |
HSL Code | hsl(122, 98%, 51%) |
#07fc11 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(07, 252, 17); }
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(122, 98%, 51%); }
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 #07fc11
RGB Code | Hex Code | Preview |
---|---|---|
rgb(07, 252, 17, 10%) | #07fc111a | |
rgb(07, 252, 17, 20%) | #07fc1133 | |
rgb(07, 252, 17, 40%) | #07fc114C | |
rgb(07, 252, 17, 60%) | #07fc1199 | |
rgb(07, 252, 17, 80%) | #07fc11CC | |
rgb(07, 252, 17, 100%) | #07fc11FF |
Saturated and desaturated colors of #07fc11
HSL Code | Preview |
---|---|
hsl(122, 10%, 51%) | |
hsl(122, 20%, 51%) | |
hsl(122, 40%, 51%) | |
hsl(122, 60%, 51%) | |
hsl(122, 80%, 51%) | |
hsl(122, 100%, 51%) |
#07fc11 Color Usage In CSS
body { color: #07fc11; } p { color: rgb(07, 252, 17); } header { border-bottom:1px solid #07fc11; }