#1ae233 Color
Color Codes | |
---|---|
Hex Code | #1ae233 |
RGB Code | rgb(26, 226, 51) |
HSL Code | hsl(128, 79%, 49%) |
#1ae233 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(26, 226, 51); }
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(128, 79%, 49%); }
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 #1ae233
RGB Code | Hex Code | Preview |
---|---|---|
rgb(26, 226, 51, 10%) | #1ae2331a | |
rgb(26, 226, 51, 20%) | #1ae23333 | |
rgb(26, 226, 51, 40%) | #1ae2334C | |
rgb(26, 226, 51, 60%) | #1ae23399 | |
rgb(26, 226, 51, 80%) | #1ae233CC | |
rgb(26, 226, 51, 100%) | #1ae233FF |
Saturated and desaturated colors of #1ae233
HSL Code | Preview |
---|---|
hsl(128, 10%, 49%) | |
hsl(128, 20%, 49%) | |
hsl(128, 40%, 49%) | |
hsl(128, 60%, 49%) | |
hsl(128, 80%, 49%) | |
hsl(128, 100%, 49%) |
#1ae233 Color Usage In CSS
body { color: #1ae233; } p { color: rgb(26, 226, 51); } header { border-bottom:1px solid #1ae233; }