#95cc9e Color
Color Codes | |
---|---|
Hex Code | #95cc9e |
RGB Code | rgb(149, 204, 158) |
HSL Code | hsl(130, 35%, 69%) |
#95cc9e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(149, 204, 158); }
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(130, 35%, 69%); }
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 #95cc9e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(149, 204, 158, 10%) | #95cc9e1a | |
rgb(149, 204, 158, 20%) | #95cc9e33 | |
rgb(149, 204, 158, 40%) | #95cc9e4C | |
rgb(149, 204, 158, 60%) | #95cc9e99 | |
rgb(149, 204, 158, 80%) | #95cc9eCC | |
rgb(149, 204, 158, 100%) | #95cc9eFF |
Saturated and desaturated colors of #95cc9e
HSL Code | Preview |
---|---|
hsl(130, 10%, 69%) | |
hsl(130, 20%, 69%) | |
hsl(130, 40%, 69%) | |
hsl(130, 60%, 69%) | |
hsl(130, 80%, 69%) | |
hsl(130, 100%, 69%) |
#95cc9e Color Usage In CSS
body { color: #95cc9e; } p { color: rgb(149, 204, 158); } header { border-bottom:1px solid #95cc9e; }