#95fa6f Color
Color Codes | |
---|---|
Hex Code | #95fa6f |
RGB Code | rgb(149, 250, 111) |
HSL Code | hsl(104, 93%, 71%) |
#95fa6f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(149, 250, 111); }
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(104, 93%, 71%); }
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 #95fa6f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(149, 250, 111, 10%) | #95fa6f1a | |
rgb(149, 250, 111, 20%) | #95fa6f33 | |
rgb(149, 250, 111, 40%) | #95fa6f4C | |
rgb(149, 250, 111, 60%) | #95fa6f99 | |
rgb(149, 250, 111, 80%) | #95fa6fCC | |
rgb(149, 250, 111, 100%) | #95fa6fFF |
Saturated and desaturated colors of #95fa6f
HSL Code | Preview |
---|---|
hsl(104, 10%, 71%) | |
hsl(104, 20%, 71%) | |
hsl(104, 40%, 71%) | |
hsl(104, 60%, 71%) | |
hsl(104, 80%, 71%) | |
hsl(104, 100%, 71%) |
#95fa6f Color Usage In CSS
body { color: #95fa6f; } p { color: rgb(149, 250, 111); } header { border-bottom:1px solid #95fa6f; }