HEX: #6E787B
RGB: (110,120,123)
#6E787B contains red, green and blue colors in about the same proportion. Web safe color of #6E787B is #666666 (or #666).
#6E787B color RGB value is (110,120,123).
RGB: (110,120,123) (43%,47%,48%)
R 110 of 255 = 43%
G 120 of 255 = 47%
B 123 of 255 = 48%
R + G + B ~ 46%. #6E787B is middle color (not dark and not light).
R + G + B =
110 + 120 + 123 = 353 (100%)
R 110 of 353 ~ 31.16%
G 120 of 353 ~ 33.99%
B 123 of 353 ~ 34.84%
#6E787B color CMYK value is (11,2,0,52).
CMYK: (11,2,0,52) C11M2Y0K52 (11%,2%,0%,52%) (0.11/0.02/0.00/0.52)
6E | 78 | 7B | |
---|---|---|---|
RGB | 110 | 120 | 123 |
HSL | 194° | 5.58% | 45.69% |
HSB/HSV | 194° | 10.57% | 48.24% |
CMYK | 10.57% | 2.44% | 0.00% |
51.76% |
HEX | 6E | 78 | 7B |
Decimal | 110 | 120 | 123 |
Binary | 1101110 | 1111000 | 1111011 |
Octal | 156 | 170 | 173 |
Examples of css and html codes for elements with #6E787B color. Also use rgb(110,120,123) instead hex code.
.myTextColor { color: #6E787B; }
<p style="color:#6E787B">This sample text font color is #6E787B.</p>
This text font color is #6E787B.
.myBgColor { background-color: #6E787B; }
<div style="background-color:#6E787B">Inner text</div>
This div background color is #6E787B.
.myBorderColor { border: 1px solid #6E787B; }
<div style="border:3px solid #6E787B">Div</div>
This div border color is #6E787B.
.myOpacity80 { color: #6E787B; opacity: 0.8; }
<p style="color:#6E787B;opacity:0.8;">80%</p>
Text with #6E787B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E787B;}
<p style="text-shadow: 3px 3px 1px #6E787B">Text here.</p>
This text has shadow with #6E787B color.
.textShadow {text-shadow: 3px 3px 1px #6E787B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E787B, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E787B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E787B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E787B, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E787B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E787B; -webkit-box-shadow: 1px 1px 3px 2px #6E787B; box-shadow: 1px 1px 3px 2px #6E787B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E787B; -webkit-box-shadow: 1px 1px 3px 2px #6E787B; box-shadow:1px 1px 3px 2px #6E787B;">
Div content here</div>
This text has color #6E787B on black background.
This text has color #6E787B on white background.
This text has black color on #6E787B background.
This text has white color on #6E787B background.