#05e19d Color
Color Codes | |
---|---|
Hex Code | #05e19d |
RGB Code | rgb(05, 225, 157) |
HSL Code | hsl(161, 96%, 45%) |
#05e19d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(05, 225, 157); }
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(161, 96%, 45%); }
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 #05e19d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(05, 225, 157, 10%) | #05e19d1a | |
rgb(05, 225, 157, 20%) | #05e19d33 | |
rgb(05, 225, 157, 40%) | #05e19d4C | |
rgb(05, 225, 157, 60%) | #05e19d99 | |
rgb(05, 225, 157, 80%) | #05e19dCC | |
rgb(05, 225, 157, 100%) | #05e19dFF |
Saturated and desaturated colors of #05e19d
HSL Code | Preview |
---|---|
hsl(161, 10%, 45%) | |
hsl(161, 20%, 45%) | |
hsl(161, 40%, 45%) | |
hsl(161, 60%, 45%) | |
hsl(161, 80%, 45%) | |
hsl(161, 100%, 45%) |
#05e19d Color Usage In CSS
body { color: #05e19d; } p { color: rgb(05, 225, 157); } header { border-bottom:1px solid #05e19d; }