#0bb348 Color
Color Codes | |
---|---|
Hex Code | #0bb348 |
RGB Code | rgb(11, 179, 72) |
HSL Code | hsl(142, 88%, 37%) |
#0bb348 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(11, 179, 72); }
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(142, 88%, 37%); }
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 #0bb348
RGB Code | Hex Code | Preview |
---|---|---|
rgb(11, 179, 72, 10%) | #0bb3481a | |
rgb(11, 179, 72, 20%) | #0bb34833 | |
rgb(11, 179, 72, 40%) | #0bb3484C | |
rgb(11, 179, 72, 60%) | #0bb34899 | |
rgb(11, 179, 72, 80%) | #0bb348CC | |
rgb(11, 179, 72, 100%) | #0bb348FF |
Saturated and desaturated colors of #0bb348
HSL Code | Preview |
---|---|
hsl(142, 10%, 37%) | |
hsl(142, 20%, 37%) | |
hsl(142, 40%, 37%) | |
hsl(142, 60%, 37%) | |
hsl(142, 80%, 37%) | |
hsl(142, 100%, 37%) |
#0bb348 Color Usage In CSS
body { color: #0bb348; } p { color: rgb(11, 179, 72); } header { border-bottom:1px solid #0bb348; }