#0f2742 Color
Color Codes | |
---|---|
Hex Code | #0f2742 |
RGB Code | rgb(15, 39, 66) |
HSL Code | hsl(212, 63%, 16%) |
#0f2742 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(15, 39, 66); }
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(212, 63%, 16%); }
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 #0f2742
RGB Code | Hex Code | Preview |
---|---|---|
rgb(15, 39, 66, 10%) | #0f27421a | |
rgb(15, 39, 66, 20%) | #0f274233 | |
rgb(15, 39, 66, 40%) | #0f27424C | |
rgb(15, 39, 66, 60%) | #0f274299 | |
rgb(15, 39, 66, 80%) | #0f2742CC | |
rgb(15, 39, 66, 100%) | #0f2742FF |
Saturated and desaturated colors of #0f2742
HSL Code | Preview |
---|---|
hsl(212, 10%, 16%) | |
hsl(212, 20%, 16%) | |
hsl(212, 40%, 16%) | |
hsl(212, 60%, 16%) | |
hsl(212, 80%, 16%) | |
hsl(212, 100%, 16%) |
#0f2742 Color Usage In CSS
body { color: #0f2742; } p { color: rgb(15, 39, 66); } header { border-bottom:1px solid #0f2742; }