#91f5c1 Color
Color Codes | |
---|---|
Hex Code | #91f5c1 |
RGB Code | rgb(145, 245, 193) |
HSL Code | hsl(149, 83%, 76%) |
#91f5c1 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(145, 245, 193); }
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(149, 83%, 76%); }
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 #91f5c1
RGB Code | Hex Code | Preview |
---|---|---|
rgb(145, 245, 193, 10%) | #91f5c11a | |
rgb(145, 245, 193, 20%) | #91f5c133 | |
rgb(145, 245, 193, 40%) | #91f5c14C | |
rgb(145, 245, 193, 60%) | #91f5c199 | |
rgb(145, 245, 193, 80%) | #91f5c1CC | |
rgb(145, 245, 193, 100%) | #91f5c1FF |
Saturated and desaturated colors of #91f5c1
HSL Code | Preview |
---|---|
hsl(149, 10%, 76%) | |
hsl(149, 20%, 76%) | |
hsl(149, 40%, 76%) | |
hsl(149, 60%, 76%) | |
hsl(149, 80%, 76%) | |
hsl(149, 100%, 76%) |
#91f5c1 Color Usage In CSS
body { color: #91f5c1; } p { color: rgb(145, 245, 193); } header { border-bottom:1px solid #91f5c1; }