#0b2000 Color
Color Codes | |
---|---|
Hex Code | #0b2000 |
RGB Code | rgb(11, 32, 00) |
HSL Code | hsl(99, 100%, 6%) |
#0b2000 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(11, 32, 00); }
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(99, 100%, 6%); }
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 #0b2000
RGB Code | Hex Code | Preview |
---|---|---|
rgb(11, 32, 00, 10%) | #0b20001a | |
rgb(11, 32, 00, 20%) | #0b200033 | |
rgb(11, 32, 00, 40%) | #0b20004C | |
rgb(11, 32, 00, 60%) | #0b200099 | |
rgb(11, 32, 00, 80%) | #0b2000CC | |
rgb(11, 32, 00, 100%) | #0b2000FF |
Saturated and desaturated colors of #0b2000
HSL Code | Preview |
---|---|
hsl(99, 10%, 6%) | |
hsl(99, 20%, 6%) | |
hsl(99, 40%, 6%) | |
hsl(99, 60%, 6%) | |
hsl(99, 80%, 6%) | |
hsl(99, 100%, 6%) |
#0b2000 Color Usage In CSS
body { color: #0b2000; } p { color: rgb(11, 32, 00); } header { border-bottom:1px solid #0b2000; }