#0bc03a Color
Color Codes | |
---|---|
Hex Code | #0bc03a |
RGB Code | rgb(11, 192, 58) |
HSL Code | hsl(136, 89%, 40%) |
#0bc03a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(11, 192, 58); }
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(136, 89%, 40%); }
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 #0bc03a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(11, 192, 58, 10%) | #0bc03a1a | |
rgb(11, 192, 58, 20%) | #0bc03a33 | |
rgb(11, 192, 58, 40%) | #0bc03a4C | |
rgb(11, 192, 58, 60%) | #0bc03a99 | |
rgb(11, 192, 58, 80%) | #0bc03aCC | |
rgb(11, 192, 58, 100%) | #0bc03aFF |
Saturated and desaturated colors of #0bc03a
HSL Code | Preview |
---|---|
hsl(136, 10%, 40%) | |
hsl(136, 20%, 40%) | |
hsl(136, 40%, 40%) | |
hsl(136, 60%, 40%) | |
hsl(136, 80%, 40%) | |
hsl(136, 100%, 40%) |
#0bc03a Color Usage In CSS
body { color: #0bc03a; } p { color: rgb(11, 192, 58); } header { border-bottom:1px solid #0bc03a; }