HEX: #6E8DBA
RGB: (110,141,186)
#6E8DBA contains mainly green and blue colors. Web safe color of #6E8DBA is #6699CC (or #69C).
#6E8DBA color RGB value is (110,141,186).
RGB: (110,141,186) (43%,55%,73%)
R 110 of 255 = 43%
G 141 of 255 = 55%
B 186 of 255 = 73%
R + G + B ~ 57%. #6E8DBA is middle color (not dark and not light).
R + G + B =
110 + 141 + 186 = 437 (100%)
R 110 of 437 ~ 25.17%
G 141 of 437 ~ 32.27%
B 186 of 437 ~ 42.56%
#6E8DBA color CMYK value is (41,24,0,27).
CMYK: (41,24,0,27) C41M24Y0K27 (41%,24%,0%,27%) (0.41/0.24/0.00/0.27)
6E | 8D | BA | |
---|---|---|---|
RGB | 110 | 141 | 186 |
HSL | 216° | 35.51% | 58.04% |
HSB/HSV | 216° | 40.86% | 72.94% |
CMYK | 40.86% | 24.19% | 0.00% |
27.06% |
HEX | 6E | 8D | BA |
Decimal | 110 | 141 | 186 |
Binary | 1101110 | 10001101 | 10111010 |
Octal | 156 | 215 | 272 |
Examples of css and html codes for elements with #6E8DBA color. Also use rgb(110,141,186) instead hex code.
.myTextColor { color: #6E8DBA; }
<p style="color:#6E8DBA">This sample text font color is #6E8DBA.</p>
This text font color is #6E8DBA.
.myBgColor { background-color: #6E8DBA; }
<div style="background-color:#6E8DBA">Inner text</div>
This div background color is #6E8DBA.
.myBorderColor { border: 1px solid #6E8DBA; }
<div style="border:3px solid #6E8DBA">Div</div>
This div border color is #6E8DBA.
.myOpacity80 { color: #6E8DBA; opacity: 0.8; }
<p style="color:#6E8DBA;opacity:0.8;">80%</p>
Text with #6E8DBA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E8DBA;}
<p style="text-shadow: 3px 3px 1px #6E8DBA">Text here.</p>
This text has shadow with #6E8DBA color.
.textShadow {text-shadow: 3px 3px 1px #6E8DBA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E8DBA, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E8DBA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E8DBA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E8DBA, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E8DBA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E8DBA; -webkit-box-shadow: 1px 1px 3px 2px #6E8DBA; box-shadow: 1px 1px 3px 2px #6E8DBA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E8DBA; -webkit-box-shadow: 1px 1px 3px 2px #6E8DBA; box-shadow:1px 1px 3px 2px #6E8DBA;">
Div content here</div>
This text has color #6E8DBA on black background.
This text has color #6E8DBA on white background.
This text has black color on #6E8DBA background.
This text has white color on #6E8DBA background.