HEX: #0B71B6
RGB: (11,113,182)
#0B71B6 contains mainly blue color. Web safe color of #0B71B6 is #0066CC (or #06C).
#0B71B6 color RGB value is (11,113,182).
RGB: (11,113,182) (4%,44%,71%)
R 11 of 255 = 4%
G 113 of 255 = 44%
B 182 of 255 = 71%
R + G + B ~ 40%. #0B71B6 is middle color (not dark and not light).
R + G + B =
11 + 113 + 182 = 306 (100%)
R 11 of 306 ~ 3.59%
G 113 of 306 ~ 36.93%
B 182 of 306 ~ 59.48%
#0B71B6 color CMYK value is (94,38,0,29).
CMYK: (94,38,0,29) C94M38Y0K29 (94%,38%,0%,29%) (0.94/0.38/0.00/0.29)
0B | 71 | B6 | |
---|---|---|---|
RGB | 11 | 113 | 182 |
HSL | 204° | 88.60% | 37.84% |
HSB/HSV | 204° | 93.96% | 71.37% |
CMYK | 93.96% | 37.91% | 0.00% |
28.63% |
HEX | 0B | 71 | B6 |
Decimal | 11 | 113 | 182 |
Binary | 1011 | 1110001 | 10110110 |
Octal | 13 | 161 | 266 |
Examples of css and html codes for elements with #0B71B6 color. Also use rgb(11,113,182) instead hex code.
.myTextColor { color: #0B71B6; }
<p style="color:#0B71B6">This sample text font color is #0B71B6.</p>
This text font color is #0B71B6.
.myBgColor { background-color: #0B71B6; }
<div style="background-color:#0B71B6">Inner text</div>
This div background color is #0B71B6.
.myBorderColor { border: 1px solid #0B71B6; }
<div style="border:3px solid #0B71B6">Div</div>
This div border color is #0B71B6.
.myOpacity80 { color: #0B71B6; opacity: 0.8; }
<p style="color:#0B71B6;opacity:0.8;">80%</p>
Text with #0B71B6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #0B71B6;}
<p style="text-shadow: 3px 3px 1px #0B71B6">Text here.</p>
This text has shadow with #0B71B6 color.
.textShadow {text-shadow: 3px 3px 1px #0B71B6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #0B71B6, 5px 5px 20px red">Text here.</p>
This text has shadow with #0B71B6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#0B71B6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#0B71B6, Direction=45, Strength=4)">Text</p>
This text has shadow with #0B71B6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #0B71B6; -webkit-box-shadow: 1px 1px 3px 2px #0B71B6; box-shadow: 1px 1px 3px 2px #0B71B6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #0B71B6; -webkit-box-shadow: 1px 1px 3px 2px #0B71B6; box-shadow:1px 1px 3px 2px #0B71B6;">
Div content here</div>
This text has color #0B71B6 on black background.
This text has color #0B71B6 on white background.
This text has black color on #0B71B6 background.
This text has white color on #0B71B6 background.