#060b2a hex color information.
RGB value of #060b2a is (6,11,42)
Change page background color to #060b2a
| Reset
| RGB | 6 | 11 | 42 |
|---|---|---|---|
| HSL | 0.64 | 0.75 | 0.09 |
| HSV | 232° | 86° | 16° |
| CMYK | 0.86 | 0.74 | 0.00 0.84 |
| XYZ | 0.6127 | 0.4452 | 2.2441 |
| Yxy | 0.4452 | 0.1856 | 0.1348 |
| Hunter Lab | 6.6723 | 4.7145 | -15.2703 |
| CIE-Lab | 4.0215 | 7.7647 | -20.3152 |
#060b2a hex color red value is 6, green value is 11 and the blue value of its RGB is 11. Cylindrical-coordinate representations (also known as HSL) of color #060b2a hue: 0.64 , saturation: 0.75 and the lightness value of 060b2a is 0.09.
The process color (four color CMYK) of #060b2a hex color is 0.86, 0.74, 0.00, 0.84. Web safe color of #060b2a is #000033
Color #060b2a contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00000110 | 00001011 | 00101010 |
| Octal | 6 | 13 | 52 |
| Decimal | 6 | 11 | 42 |
| Hexadecimal | 6 | B | 2A |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#060b2a; }
.myforecolor {color:#060b2a; }
.mybordercolor {border:3px solid #060b2a; }
This sample text font color is #060b2a
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
<p style="color:#060b2a">Text here</p>
This div background color is #060b2a
<div style="background-color:#060b2a">
Div content here</div>
This div border color is #060b2a
<div style="border:3px solid #060b2a">
Div here</div>
| #060b2a | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(6,11,42, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #060b2a;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #060b2a;
-webkit-box-shadow: 1px 1px 3px 2px #060b2a;
box-shadow: 1px 1px 3px 2px #060b2a;
}
<p style="text-shadow: 4px 4px 2px rgba(6,11,42, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #060b2a">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #060b2a
<div style="-moz-box-shadow: 1px 1px 3px 2px #060b2a; -webkit-box-shadow: 1px 1px 3px 2px #060b2a; box-shadow: 1px 1px 3px 2px #060b2a;">
Div content here</div>