#25da99 Color
Color Codes | |
---|---|
Hex Code | #25da99 |
RGB Code | rgb(37, 218, 153) |
HSL Code | hsl(158, 71%, 50%) |
#25da99 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(37, 218, 153); }
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(158, 71%, 50%); }
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 #25da99
RGB Code | Hex Code | Preview |
---|---|---|
rgb(37, 218, 153, 10%) | #25da991a | |
rgb(37, 218, 153, 20%) | #25da9933 | |
rgb(37, 218, 153, 40%) | #25da994C | |
rgb(37, 218, 153, 60%) | #25da9999 | |
rgb(37, 218, 153, 80%) | #25da99CC | |
rgb(37, 218, 153, 100%) | #25da99FF |
Saturated and desaturated colors of #25da99
HSL Code | Preview |
---|---|
hsl(158, 10%, 50%) | |
hsl(158, 20%, 50%) | |
hsl(158, 40%, 50%) | |
hsl(158, 60%, 50%) | |
hsl(158, 80%, 50%) | |
hsl(158, 100%, 50%) |
#25da99 Color Usage In CSS
body { color: #25da99; } p { color: rgb(37, 218, 153); } header { border-bottom:1px solid #25da99; }