#15b390 Color
Color Codes | |
---|---|
Hex Code | #15b390 |
RGB Code | rgb(21, 179, 144) |
HSL Code | hsl(167, 79%, 39%) |
#15b390 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(21, 179, 144); }
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(167, 79%, 39%); }
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 #15b390
RGB Code | Hex Code | Preview |
---|---|---|
rgb(21, 179, 144, 10%) | #15b3901a | |
rgb(21, 179, 144, 20%) | #15b39033 | |
rgb(21, 179, 144, 40%) | #15b3904C | |
rgb(21, 179, 144, 60%) | #15b39099 | |
rgb(21, 179, 144, 80%) | #15b390CC | |
rgb(21, 179, 144, 100%) | #15b390FF |
Saturated and desaturated colors of #15b390
HSL Code | Preview |
---|---|
hsl(167, 10%, 39%) | |
hsl(167, 20%, 39%) | |
hsl(167, 40%, 39%) | |
hsl(167, 60%, 39%) | |
hsl(167, 80%, 39%) | |
hsl(167, 100%, 39%) |
#15b390 Color Usage In CSS
body { color: #15b390; } p { color: rgb(21, 179, 144); } header { border-bottom:1px solid #15b390; }