HEX: #0B064F
RGB: (11,6,79)
#0B064F contains mainly blue color. Web safe color of #0B064F is #000066 (or #006).
#0B064F color RGB value is (11,6,79).
RGB: (11,6,79) (4%,2%,31%)
R 11 of 255 = 4%
G 6 of 255 = 2%
B 79 of 255 = 31%
R + G + B ~ 12%. #0B064F is dark color.
R + G + B =
11 + 6 + 79 = 96 (100%)
R 11 of 96 ~ 11.46%
G 6 of 96 ~ 6.25%
B 79 of 96 ~ 82.29%
#0B064F color CMYK value is (86,92,0,69).
CMYK: (86,92,0,69) C86M92Y0K69 (86%,92%,0%,69%) (0.86/0.92/0.00/0.69)
0B | 06 | 4F | |
---|---|---|---|
RGB | 11 | 6 | 79 |
HSL | 244° | 85.88% | 16.67% |
HSB/HSV | 244° | 92.41% | 30.98% |
CMYK | 86.08% | 92.41% | 0.00% |
69.02% |
HEX | 0B | 06 | 4F |
Decimal | 11 | 6 | 79 |
Binary | 1011 | 110 | 1001111 |
Octal | 13 | 6 | 117 |
Examples of css and html codes for elements with #0B064F color. Also use rgb(11,6,79) instead hex code.
.myTextColor { color: #0B064F; }
<p style="color:#0B064F">This sample text font color is #0B064F.</p>
This text font color is #0B064F.
.myBgColor { background-color: #0B064F; }
<div style="background-color:#0B064F">Inner text</div>
This div background color is #0B064F.
.myBorderColor { border: 1px solid #0B064F; }
<div style="border:3px solid #0B064F">Div</div>
This div border color is #0B064F.
.myOpacity80 { color: #0B064F; opacity: 0.8; }
<p style="color:#0B064F;opacity:0.8;">80%</p>
Text with #0B064F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #0B064F;}
<p style="text-shadow: 3px 3px 1px #0B064F">Text here.</p>
This text has shadow with #0B064F color.
.textShadow {text-shadow: 3px 3px 1px #0B064F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #0B064F, 5px 5px 20px red">Text here.</p>
This text has shadow with #0B064F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#0B064F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#0B064F, Direction=45, Strength=4)">Text</p>
This text has shadow with #0B064F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #0B064F; -webkit-box-shadow: 1px 1px 3px 2px #0B064F; box-shadow: 1px 1px 3px 2px #0B064F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #0B064F; -webkit-box-shadow: 1px 1px 3px 2px #0B064F; box-shadow:1px 1px 3px 2px #0B064F;">
Div content here</div>
This text has color #0B064F on black background.
This text has color #0B064F on white background.
This text has black color on #0B064F background.
This text has white color on #0B064F background.