#15f996 Color
Color Codes | |
---|---|
Hex Code | #15f996 |
RGB Code | rgb(21, 249, 150) |
HSL Code | hsl(154, 95%, 53%) |
#15f996 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(21, 249, 150); }
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(154, 95%, 53%); }
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 #15f996
RGB Code | Hex Code | Preview |
---|---|---|
rgb(21, 249, 150, 10%) | #15f9961a | |
rgb(21, 249, 150, 20%) | #15f99633 | |
rgb(21, 249, 150, 40%) | #15f9964C | |
rgb(21, 249, 150, 60%) | #15f99699 | |
rgb(21, 249, 150, 80%) | #15f996CC | |
rgb(21, 249, 150, 100%) | #15f996FF |
Saturated and desaturated colors of #15f996
HSL Code | Preview |
---|---|
hsl(154, 10%, 53%) | |
hsl(154, 20%, 53%) | |
hsl(154, 40%, 53%) | |
hsl(154, 60%, 53%) | |
hsl(154, 80%, 53%) | |
hsl(154, 100%, 53%) |
#15f996 Color Usage In CSS
body { color: #15f996; } p { color: rgb(21, 249, 150); } header { border-bottom:1px solid #15f996; }