HEX: #6E626C
RGB: (110,98,108)
#6E626C contains red, green and blue colors in about the same proportion. Web safe color of #6E626C is #666666 (or #666).
#6E626C color RGB value is (110,98,108).
RGB: (110,98,108) (43%,38%,42%)
R 110 of 255 = 43%
G 98 of 255 = 38%
B 108 of 255 = 42%
R + G + B ~ 41%. #6E626C is middle color (not dark and not light).
R + G + B =
110 + 98 + 108 = 316 (100%)
R 110 of 316 ~ 34.81%
G 98 of 316 ~ 31.01%
B 108 of 316 ~ 34.18%
#6E626C color CMYK value is (0,11,2,57).
CMYK: (0,11,2,57) C0M11Y2K57 (0%,11%,2%,57%) (0.00/0.11/0.02/0.57)
6E | 62 | 6C | |
---|---|---|---|
RGB | 110 | 98 | 108 |
HSL | 310° | 5.77% | 40.78% |
HSB/HSV | 310° | 10.91% | 43.14% |
CMYK | 0.00% | 10.91% | 1.82% |
56.86% |
HEX | 6E | 62 | 6C |
Decimal | 110 | 98 | 108 |
Binary | 1101110 | 1100010 | 1101100 |
Octal | 156 | 142 | 154 |
Examples of css and html codes for elements with #6E626C color. Also use rgb(110,98,108) instead hex code.
.myTextColor { color: #6E626C; }
<p style="color:#6E626C">This sample text font color is #6E626C.</p>
This text font color is #6E626C.
.myBgColor { background-color: #6E626C; }
<div style="background-color:#6E626C">Inner text</div>
This div background color is #6E626C.
.myBorderColor { border: 1px solid #6E626C; }
<div style="border:3px solid #6E626C">Div</div>
This div border color is #6E626C.
.myOpacity80 { color: #6E626C; opacity: 0.8; }
<p style="color:#6E626C;opacity:0.8;">80%</p>
Text with #6E626C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E626C;}
<p style="text-shadow: 3px 3px 1px #6E626C">Text here.</p>
This text has shadow with #6E626C color.
.textShadow {text-shadow: 3px 3px 1px #6E626C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E626C, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E626C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E626C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E626C, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E626C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E626C; -webkit-box-shadow: 1px 1px 3px 2px #6E626C; box-shadow: 1px 1px 3px 2px #6E626C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E626C; -webkit-box-shadow: 1px 1px 3px 2px #6E626C; box-shadow:1px 1px 3px 2px #6E626C;">
Div content here</div>
This text has color #6E626C on black background.
This text has color #6E626C on white background.
This text has black color on #6E626C background.
This text has white color on #6E626C background.