HEX: #78666A
RGB: (120,102,106)
#78666A contains red, green and blue colors in about the same proportion. Web safe color of #78666A is #666666 (or #666).
#78666A color RGB value is (120,102,106).
RGB: (120,102,106) (47%,40%,42%)
R 120 of 255 = 47%
G 102 of 255 = 40%
B 106 of 255 = 42%
R + G + B ~ 43%. #78666A is middle color (not dark and not light).
R + G + B =
120 + 102 + 106 = 328 (100%)
R 120 of 328 ~ 36.59%
G 102 of 328 ~ 31.1%
B 106 of 328 ~ 32.32%
#78666A color CMYK value is (0,15,12,53).
CMYK: (0,15,12,53) C0M15Y12K53 (0%,15%,12%,53%) (0.00/0.15/0.12/0.53)
78 | 66 | 6A | |
---|---|---|---|
RGB | 120 | 102 | 106 |
HSL | 347° | 8.11% | 43.53% |
HSB/HSV | 347° | 15.00% | 47.06% |
CMYK | 0.00% | 15.00% | 11.67% |
52.94% |
HEX | 78 | 66 | 6A |
Decimal | 120 | 102 | 106 |
Binary | 1111000 | 1100110 | 1101010 |
Octal | 170 | 146 | 152 |
Examples of css and html codes for elements with #78666A color. Also use rgb(120,102,106) instead hex code.
.myTextColor { color: #78666A; }
<p style="color:#78666A">This sample text font color is #78666A.</p>
This text font color is #78666A.
.myBgColor { background-color: #78666A; }
<div style="background-color:#78666A">Inner text</div>
This div background color is #78666A.
.myBorderColor { border: 1px solid #78666A; }
<div style="border:3px solid #78666A">Div</div>
This div border color is #78666A.
.myOpacity80 { color: #78666A; opacity: 0.8; }
<p style="color:#78666A;opacity:0.8;">80%</p>
Text with #78666A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #78666A;}
<p style="text-shadow: 3px 3px 1px #78666A">Text here.</p>
This text has shadow with #78666A color.
.textShadow {text-shadow: 3px 3px 1px #78666A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #78666A, 5px 5px 20px red">Text here.</p>
This text has shadow with #78666A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#78666A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#78666A, Direction=45, Strength=4)">Text</p>
This text has shadow with #78666A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #78666A; -webkit-box-shadow: 1px 1px 3px 2px #78666A; box-shadow: 1px 1px 3px 2px #78666A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #78666A; -webkit-box-shadow: 1px 1px 3px 2px #78666A; box-shadow:1px 1px 3px 2px #78666A;">
Div content here</div>
This text has color #78666A on black background.
This text has color #78666A on white background.
This text has black color on #78666A background.
This text has white color on #78666A background.