HEX: #6E86BB
RGB: (110,134,187)
#6E86BB contains mainly green and blue colors. Web safe color of #6E86BB is #6699CC (or #69C).
#6E86BB color RGB value is (110,134,187).
RGB: (110,134,187) (43%,53%,73%)
R 110 of 255 = 43%
G 134 of 255 = 53%
B 187 of 255 = 73%
R + G + B ~ 56%. #6E86BB is middle color (not dark and not light).
R + G + B =
110 + 134 + 187 = 431 (100%)
R 110 of 431 ~ 25.52%
G 134 of 431 ~ 31.09%
B 187 of 431 ~ 43.39%
#6E86BB color CMYK value is (41,28,0,27).
CMYK: (41,28,0,27) C41M28Y0K27 (41%,28%,0%,27%) (0.41/0.28/0.00/0.27)
6E | 86 | BB | |
---|---|---|---|
RGB | 110 | 134 | 187 |
HSL | 221° | 36.15% | 58.24% |
HSB/HSV | 221° | 41.18% | 73.33% |
CMYK | 41.18% | 28.34% | 0.00% |
26.67% |
HEX | 6E | 86 | BB |
Decimal | 110 | 134 | 187 |
Binary | 1101110 | 10000110 | 10111011 |
Octal | 156 | 206 | 273 |
Examples of css and html codes for elements with #6E86BB color. Also use rgb(110,134,187) instead hex code.
.myTextColor { color: #6E86BB; }
<p style="color:#6E86BB">This sample text font color is #6E86BB.</p>
This text font color is #6E86BB.
.myBgColor { background-color: #6E86BB; }
<div style="background-color:#6E86BB">Inner text</div>
This div background color is #6E86BB.
.myBorderColor { border: 1px solid #6E86BB; }
<div style="border:3px solid #6E86BB">Div</div>
This div border color is #6E86BB.
.myOpacity80 { color: #6E86BB; opacity: 0.8; }
<p style="color:#6E86BB;opacity:0.8;">80%</p>
Text with #6E86BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E86BB;}
<p style="text-shadow: 3px 3px 1px #6E86BB">Text here.</p>
This text has shadow with #6E86BB color.
.textShadow {text-shadow: 3px 3px 1px #6E86BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E86BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E86BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E86BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E86BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E86BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E86BB; -webkit-box-shadow: 1px 1px 3px 2px #6E86BB; box-shadow: 1px 1px 3px 2px #6E86BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E86BB; -webkit-box-shadow: 1px 1px 3px 2px #6E86BB; box-shadow:1px 1px 3px 2px #6E86BB;">
Div content here</div>
This text has color #6E86BB on black background.
This text has color #6E86BB on white background.
This text has black color on #6E86BB background.
This text has white color on #6E86BB background.