#16f90a Color
Color Codes | |
---|---|
Hex Code | #16f90a |
RGB Code | rgb(22, 249, 10) |
HSL Code | hsl(117, 95%, 51%) |
#16f90a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(22, 249, 10); }
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, 95%, 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 #16f90a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(22, 249, 10, 10%) | #16f90a1a | |
rgb(22, 249, 10, 20%) | #16f90a33 | |
rgb(22, 249, 10, 40%) | #16f90a4C | |
rgb(22, 249, 10, 60%) | #16f90a99 | |
rgb(22, 249, 10, 80%) | #16f90aCC | |
rgb(22, 249, 10, 100%) | #16f90aFF |
Saturated and desaturated colors of #16f90a
HSL Code | Preview |
---|---|
hsl(117, 10%, 51%) | |
hsl(117, 20%, 51%) | |
hsl(117, 40%, 51%) | |
hsl(117, 60%, 51%) | |
hsl(117, 80%, 51%) | |
hsl(117, 100%, 51%) |
#16f90a Color Usage In CSS
body { color: #16f90a; } p { color: rgb(22, 249, 10); } header { border-bottom:1px solid #16f90a; }