HEX: #0E0687
RGB: (14,6,135)
#0E0687 contains mainly blue color. Web safe color of #0E0687 is #000099 (or #009).
#0E0687 color RGB value is (14,6,135).
RGB: (14,6,135) (5%,2%,53%)
R 14 of 255 = 5%
G 6 of 255 = 2%
B 135 of 255 = 53%
R + G + B ~ 20%. #0E0687 is dark color.
R + G + B =
14 + 6 + 135 = 155 (100%)
R 14 of 155 ~ 9.03%
G 6 of 155 ~ 3.87%
B 135 of 155 ~ 87.1%
#0E0687 color CMYK value is (90,96,0,47).
CMYK: (90,96,0,47) C90M96Y0K47 (90%,96%,0%,47%) (0.90/0.96/0.00/0.47)
0E | 06 | 87 | |
---|---|---|---|
RGB | 14 | 6 | 135 |
HSL | 244° | 91.49% | 27.65% |
HSB/HSV | 244° | 95.56% | 52.94% |
CMYK | 89.63% | 95.56% | 0.00% |
47.06% |
HEX | 0E | 06 | 87 |
Decimal | 14 | 6 | 135 |
Binary | 1110 | 110 | 10000111 |
Octal | 16 | 6 | 207 |
Examples of css and html codes for elements with #0E0687 color. Also use rgb(14,6,135) instead hex code.
.myTextColor { color: #0E0687; }
<p style="color:#0E0687">This sample text font color is #0E0687.</p>
This text font color is #0E0687.
.myBgColor { background-color: #0E0687; }
<div style="background-color:#0E0687">Inner text</div>
This div background color is #0E0687.
.myBorderColor { border: 1px solid #0E0687; }
<div style="border:3px solid #0E0687">Div</div>
This div border color is #0E0687.
.myOpacity80 { color: #0E0687; opacity: 0.8; }
<p style="color:#0E0687;opacity:0.8;">80%</p>
Text with #0E0687 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #0E0687;}
<p style="text-shadow: 3px 3px 1px #0E0687">Text here.</p>
This text has shadow with #0E0687 color.
.textShadow {text-shadow: 3px 3px 1px #0E0687, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #0E0687, 5px 5px 20px red">Text here.</p>
This text has shadow with #0E0687 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#0E0687, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#0E0687, Direction=45, Strength=4)">Text</p>
This text has shadow with #0E0687 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #0E0687; -webkit-box-shadow: 1px 1px 3px 2px #0E0687; box-shadow: 1px 1px 3px 2px #0E0687; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #0E0687; -webkit-box-shadow: 1px 1px 3px 2px #0E0687; box-shadow:1px 1px 3px 2px #0E0687;">
Div content here</div>
This text has color #0E0687 on black background.
This text has color #0E0687 on white background.
This text has black color on #0E0687 background.
This text has white color on #0E0687 background.