#0c1b31 Color
Color Codes | |
---|---|
Hex Code | #0c1b31 |
RGB Code | rgb(12, 27, 49) |
HSL Code | hsl(216, 61%, 12%) |
#0c1b31 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(12, 27, 49); }
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(216, 61%, 12%); }
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 #0c1b31
RGB Code | Hex Code | Preview |
---|---|---|
rgb(12, 27, 49, 10%) | #0c1b311a | |
rgb(12, 27, 49, 20%) | #0c1b3133 | |
rgb(12, 27, 49, 40%) | #0c1b314C | |
rgb(12, 27, 49, 60%) | #0c1b3199 | |
rgb(12, 27, 49, 80%) | #0c1b31CC | |
rgb(12, 27, 49, 100%) | #0c1b31FF |
Saturated and desaturated colors of #0c1b31
HSL Code | Preview |
---|---|
hsl(216, 10%, 12%) | |
hsl(216, 20%, 12%) | |
hsl(216, 40%, 12%) | |
hsl(216, 60%, 12%) | |
hsl(216, 80%, 12%) | |
hsl(216, 100%, 12%) |
#0c1b31 Color Usage In CSS
body { color: #0c1b31; } p { color: rgb(12, 27, 49); } header { border-bottom:1px solid #0c1b31; }