#08e37f Color
Color Codes | |
---|---|
Hex Code | #08e37f |
RGB Code | rgb(08, 227, 127) |
HSL Code | hsl(153, 93%, 46%) |
#08e37f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(08, 227, 127); }
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(153, 93%, 46%); }
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 #08e37f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(08, 227, 127, 10%) | #08e37f1a | |
rgb(08, 227, 127, 20%) | #08e37f33 | |
rgb(08, 227, 127, 40%) | #08e37f4C | |
rgb(08, 227, 127, 60%) | #08e37f99 | |
rgb(08, 227, 127, 80%) | #08e37fCC | |
rgb(08, 227, 127, 100%) | #08e37fFF |
Saturated and desaturated colors of #08e37f
HSL Code | Preview |
---|---|
hsl(153, 10%, 46%) | |
hsl(153, 20%, 46%) | |
hsl(153, 40%, 46%) | |
hsl(153, 60%, 46%) | |
hsl(153, 80%, 46%) | |
hsl(153, 100%, 46%) |
#08e37f Color Usage In CSS
body { color: #08e37f; } p { color: rgb(08, 227, 127); } header { border-bottom:1px solid #08e37f; }