#1ae941 Color
Color Codes | |
---|---|
Hex Code | #1ae941 |
RGB Code | rgb(26, 233, 65) |
HSL Code | hsl(131, 82%, 51%) |
#1ae941 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(26, 233, 65); }
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(131, 82%, 51%); }
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 #1ae941
RGB Code | Hex Code | Preview |
---|---|---|
rgb(26, 233, 65, 10%) | #1ae9411a | |
rgb(26, 233, 65, 20%) | #1ae94133 | |
rgb(26, 233, 65, 40%) | #1ae9414C | |
rgb(26, 233, 65, 60%) | #1ae94199 | |
rgb(26, 233, 65, 80%) | #1ae941CC | |
rgb(26, 233, 65, 100%) | #1ae941FF |
Saturated and desaturated colors of #1ae941
HSL Code | Preview |
---|---|
hsl(131, 10%, 51%) | |
hsl(131, 20%, 51%) | |
hsl(131, 40%, 51%) | |
hsl(131, 60%, 51%) | |
hsl(131, 80%, 51%) | |
hsl(131, 100%, 51%) |
#1ae941 Color Usage In CSS
body { color: #1ae941; } p { color: rgb(26, 233, 65); } header { border-bottom:1px solid #1ae941; }