#95fb74 Color
Color Codes | |
---|---|
Hex Code | #95fb74 |
RGB Code | rgb(149, 251, 116) |
HSL Code | hsl(105, 94%, 72%) |
#95fb74 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(149, 251, 116); }
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(105, 94%, 72%); }
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 #95fb74
RGB Code | Hex Code | Preview |
---|---|---|
rgb(149, 251, 116, 10%) | #95fb741a | |
rgb(149, 251, 116, 20%) | #95fb7433 | |
rgb(149, 251, 116, 40%) | #95fb744C | |
rgb(149, 251, 116, 60%) | #95fb7499 | |
rgb(149, 251, 116, 80%) | #95fb74CC | |
rgb(149, 251, 116, 100%) | #95fb74FF |
Saturated and desaturated colors of #95fb74
HSL Code | Preview |
---|---|
hsl(105, 10%, 72%) | |
hsl(105, 20%, 72%) | |
hsl(105, 40%, 72%) | |
hsl(105, 60%, 72%) | |
hsl(105, 80%, 72%) | |
hsl(105, 100%, 72%) |
#95fb74 Color Usage In CSS
body { color: #95fb74; } p { color: rgb(149, 251, 116); } header { border-bottom:1px solid #95fb74; }