#18de90 Color
Color Codes | |
---|---|
Hex Code | #18de90 |
RGB Code | rgb(24, 222, 144) |
HSL Code | hsl(156, 80%, 48%) |
#18de90 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(24, 222, 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(156, 80%, 48%); }
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 #18de90
RGB Code | Hex Code | Preview |
---|---|---|
rgb(24, 222, 144, 10%) | #18de901a | |
rgb(24, 222, 144, 20%) | #18de9033 | |
rgb(24, 222, 144, 40%) | #18de904C | |
rgb(24, 222, 144, 60%) | #18de9099 | |
rgb(24, 222, 144, 80%) | #18de90CC | |
rgb(24, 222, 144, 100%) | #18de90FF |
Saturated and desaturated colors of #18de90
HSL Code | Preview |
---|---|
hsl(156, 10%, 48%) | |
hsl(156, 20%, 48%) | |
hsl(156, 40%, 48%) | |
hsl(156, 60%, 48%) | |
hsl(156, 80%, 48%) | |
hsl(156, 100%, 48%) |
#18de90 Color Usage In CSS
body { color: #18de90; } p { color: rgb(24, 222, 144); } header { border-bottom:1px solid #18de90; }