#0df289 Color
Color Codes | |
---|---|
Hex Code | #0df289 |
RGB Code | rgb(13, 242, 137) |
HSL Code | hsl(152, 90%, 50%) |
#0df289 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(13, 242, 137); }
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(152, 90%, 50%); }
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 #0df289
RGB Code | Hex Code | Preview |
---|---|---|
rgb(13, 242, 137, 10%) | #0df2891a | |
rgb(13, 242, 137, 20%) | #0df28933 | |
rgb(13, 242, 137, 40%) | #0df2894C | |
rgb(13, 242, 137, 60%) | #0df28999 | |
rgb(13, 242, 137, 80%) | #0df289CC | |
rgb(13, 242, 137, 100%) | #0df289FF |
Saturated and desaturated colors of #0df289
HSL Code | Preview |
---|---|
hsl(152, 10%, 50%) | |
hsl(152, 20%, 50%) | |
hsl(152, 40%, 50%) | |
hsl(152, 60%, 50%) | |
hsl(152, 80%, 50%) | |
hsl(152, 100%, 50%) |
#0df289 Color Usage In CSS
body { color: #0df289; } p { color: rgb(13, 242, 137); } header { border-bottom:1px solid #0df289; }