#95f8da Color
Color Codes | |
---|---|
Hex Code | #95f8da |
RGB Code | rgb(149, 248, 218) |
HSL Code | hsl(162, 88%, 78%) |
#95f8da Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(149, 248, 218); }
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(162, 88%, 78%); }
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 #95f8da
RGB Code | Hex Code | Preview |
---|---|---|
rgb(149, 248, 218, 10%) | #95f8da1a | |
rgb(149, 248, 218, 20%) | #95f8da33 | |
rgb(149, 248, 218, 40%) | #95f8da4C | |
rgb(149, 248, 218, 60%) | #95f8da99 | |
rgb(149, 248, 218, 80%) | #95f8daCC | |
rgb(149, 248, 218, 100%) | #95f8daFF |
Saturated and desaturated colors of #95f8da
HSL Code | Preview |
---|---|
hsl(162, 10%, 78%) | |
hsl(162, 20%, 78%) | |
hsl(162, 40%, 78%) | |
hsl(162, 60%, 78%) | |
hsl(162, 80%, 78%) | |
hsl(162, 100%, 78%) |
#95f8da Color Usage In CSS
body { color: #95f8da; } p { color: rgb(149, 248, 218); } header { border-bottom:1px solid #95f8da; }