#0b5c3c Color
Color Codes | |
---|---|
Hex Code | #0b5c3c |
RGB Code | rgb(11, 92, 60) |
HSL Code | hsl(156, 79%, 20%) |
#0b5c3c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(11, 92, 60); }
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(156, 79%, 20%); }
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 #0b5c3c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(11, 92, 60, 10%) | #0b5c3c1a | |
rgb(11, 92, 60, 20%) | #0b5c3c33 | |
rgb(11, 92, 60, 40%) | #0b5c3c4C | |
rgb(11, 92, 60, 60%) | #0b5c3c99 | |
rgb(11, 92, 60, 80%) | #0b5c3cCC | |
rgb(11, 92, 60, 100%) | #0b5c3cFF |
Saturated and desaturated colors of #0b5c3c
HSL Code | Preview |
---|---|
hsl(156, 10%, 20%) | |
hsl(156, 20%, 20%) | |
hsl(156, 40%, 20%) | |
hsl(156, 60%, 20%) | |
hsl(156, 80%, 20%) | |
hsl(156, 100%, 20%) |
#0b5c3c Color Usage In CSS
body { color: #0b5c3c; } p { color: rgb(11, 92, 60); } header { border-bottom:1px solid #0b5c3c; }