#73e765 Color
Color Codes | |
---|---|
Hex Code | #73e765 |
RGB Code | rgb(115, 231, 101) |
HSL Code | hsl(114, 73%, 65%) |
#73e765 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(115, 231, 101); }
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(114, 73%, 65%); }
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 #73e765
RGB Code | Hex Code | Preview |
---|---|---|
rgb(115, 231, 101, 10%) | #73e7651a | |
rgb(115, 231, 101, 20%) | #73e76533 | |
rgb(115, 231, 101, 40%) | #73e7654C | |
rgb(115, 231, 101, 60%) | #73e76599 | |
rgb(115, 231, 101, 80%) | #73e765CC | |
rgb(115, 231, 101, 100%) | #73e765FF |
Saturated and desaturated colors of #73e765
HSL Code | Preview |
---|---|
hsl(114, 10%, 65%) | |
hsl(114, 20%, 65%) | |
hsl(114, 40%, 65%) | |
hsl(114, 60%, 65%) | |
hsl(114, 80%, 65%) | |
hsl(114, 100%, 65%) |
#73e765 Color Usage In CSS
body { color: #73e765; } p { color: rgb(115, 231, 101); } header { border-bottom:1px solid #73e765; }