#08d143 Color
Color Codes | |
---|---|
Hex Code | #08d143 |
RGB Code | rgb(08, 209, 67) |
HSL Code | hsl(138, 93%, 43%) |
#08d143 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(08, 209, 67); }
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(138, 93%, 43%); }
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 #08d143
RGB Code | Hex Code | Preview |
---|---|---|
rgb(08, 209, 67, 10%) | #08d1431a | |
rgb(08, 209, 67, 20%) | #08d14333 | |
rgb(08, 209, 67, 40%) | #08d1434C | |
rgb(08, 209, 67, 60%) | #08d14399 | |
rgb(08, 209, 67, 80%) | #08d143CC | |
rgb(08, 209, 67, 100%) | #08d143FF |
Saturated and desaturated colors of #08d143
HSL Code | Preview |
---|---|
hsl(138, 10%, 43%) | |
hsl(138, 20%, 43%) | |
hsl(138, 40%, 43%) | |
hsl(138, 60%, 43%) | |
hsl(138, 80%, 43%) | |
hsl(138, 100%, 43%) |
#08d143 Color Usage In CSS
body { color: #08d143; } p { color: rgb(08, 209, 67); } header { border-bottom:1px solid #08d143; }