HEX: #0F6DBC
RGB: (15,109,188)
#0F6DBC contains mainly blue color. Web safe color of #0F6DBC is #0066CC (or #06C).
#0F6DBC color RGB value is (15,109,188).
RGB: (15,109,188) (6%,43%,74%)
R 15 of 255 = 6%
G 109 of 255 = 43%
B 188 of 255 = 74%
R + G + B ~ 41%. #0F6DBC is middle color (not dark and not light).
R + G + B =
15 + 109 + 188 = 312 (100%)
R 15 of 312 ~ 4.81%
G 109 of 312 ~ 34.94%
B 188 of 312 ~ 60.26%
#0F6DBC color CMYK value is (92,42,0,26).
CMYK: (92,42,0,26) C92M42Y0K26 (92%,42%,0%,26%) (0.92/0.42/0.00/0.26)
0F | 6D | BC | |
---|---|---|---|
RGB | 15 | 109 | 188 |
HSL | 207° | 85.22% | 39.80% |
HSB/HSV | 207° | 92.02% | 73.73% |
CMYK | 92.02% | 42.02% | 0.00% |
26.27% |
HEX | 0F | 6D | BC |
Decimal | 15 | 109 | 188 |
Binary | 1111 | 1101101 | 10111100 |
Octal | 17 | 155 | 274 |
Examples of css and html codes for elements with #0F6DBC color. Also use rgb(15,109,188) instead hex code.
.myTextColor { color: #0F6DBC; }
<p style="color:#0F6DBC">This sample text font color is #0F6DBC.</p>
This text font color is #0F6DBC.
.myBgColor { background-color: #0F6DBC; }
<div style="background-color:#0F6DBC">Inner text</div>
This div background color is #0F6DBC.
.myBorderColor { border: 1px solid #0F6DBC; }
<div style="border:3px solid #0F6DBC">Div</div>
This div border color is #0F6DBC.
.myOpacity80 { color: #0F6DBC; opacity: 0.8; }
<p style="color:#0F6DBC;opacity:0.8;">80%</p>
Text with #0F6DBC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #0F6DBC;}
<p style="text-shadow: 3px 3px 1px #0F6DBC">Text here.</p>
This text has shadow with #0F6DBC color.
.textShadow {text-shadow: 3px 3px 1px #0F6DBC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #0F6DBC, 5px 5px 20px red">Text here.</p>
This text has shadow with #0F6DBC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#0F6DBC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#0F6DBC, Direction=45, Strength=4)">Text</p>
This text has shadow with #0F6DBC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #0F6DBC; -webkit-box-shadow: 1px 1px 3px 2px #0F6DBC; box-shadow: 1px 1px 3px 2px #0F6DBC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #0F6DBC; -webkit-box-shadow: 1px 1px 3px 2px #0F6DBC; box-shadow:1px 1px 3px 2px #0F6DBC;">
Div content here</div>
This text has color #0F6DBC on black background.
This text has color #0F6DBC on white background.
This text has black color on #0F6DBC background.
This text has white color on #0F6DBC background.