#15c294 Color
Color Codes | |
---|---|
Hex Code | #15c294 |
RGB Code | rgb(21, 194, 148) |
HSL Code | hsl(164, 80%, 42%) |
#15c294 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(21, 194, 148); }
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(164, 80%, 42%); }
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 #15c294
RGB Code | Hex Code | Preview |
---|---|---|
rgb(21, 194, 148, 10%) | #15c2941a | |
rgb(21, 194, 148, 20%) | #15c29433 | |
rgb(21, 194, 148, 40%) | #15c2944C | |
rgb(21, 194, 148, 60%) | #15c29499 | |
rgb(21, 194, 148, 80%) | #15c294CC | |
rgb(21, 194, 148, 100%) | #15c294FF |
Saturated and desaturated colors of #15c294
HSL Code | Preview |
---|---|
hsl(164, 10%, 42%) | |
hsl(164, 20%, 42%) | |
hsl(164, 40%, 42%) | |
hsl(164, 60%, 42%) | |
hsl(164, 80%, 42%) | |
hsl(164, 100%, 42%) |
#15c294 Color Usage In CSS
body { color: #15c294; } p { color: rgb(21, 194, 148); } header { border-bottom:1px solid #15c294; }