#0ad819 Color
Color Codes | |
---|---|
Hex Code | #0ad819 |
RGB Code | rgb(10, 216, 25) |
HSL Code | hsl(124, 91%, 44%) |
#0ad819 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(10, 216, 25); }
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(124, 91%, 44%); }
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 #0ad819
RGB Code | Hex Code | Preview |
---|---|---|
rgb(10, 216, 25, 10%) | #0ad8191a | |
rgb(10, 216, 25, 20%) | #0ad81933 | |
rgb(10, 216, 25, 40%) | #0ad8194C | |
rgb(10, 216, 25, 60%) | #0ad81999 | |
rgb(10, 216, 25, 80%) | #0ad819CC | |
rgb(10, 216, 25, 100%) | #0ad819FF |
Saturated and desaturated colors of #0ad819
HSL Code | Preview |
---|---|
hsl(124, 10%, 44%) | |
hsl(124, 20%, 44%) | |
hsl(124, 40%, 44%) | |
hsl(124, 60%, 44%) | |
hsl(124, 80%, 44%) | |
hsl(124, 100%, 44%) |
#0ad819 Color Usage In CSS
body { color: #0ad819; } p { color: rgb(10, 216, 25); } header { border-bottom:1px solid #0ad819; }