HEX: #787A78
RGB: (120,122,120)
#787A78 contains red, green and blue colors in about the same proportion. Web safe color of #787A78 is #666666 (or #666).
#787A78 color RGB value is (120,122,120).
RGB: (120,122,120) (47%,48%,47%)
R 120 of 255 = 47%
G 122 of 255 = 48%
B 120 of 255 = 47%
R + G + B ~ 47%. #787A78 is middle color (not dark and not light).
R + G + B =
120 + 122 + 120 = 362 (100%)
R 120 of 362 ~ 33.15%
G 122 of 362 ~ 33.7%
B 120 of 362 ~ 33.15%
#787A78 color CMYK value is (2,0,2,52).
CMYK: (2,0,2,52) C2M0Y2K52 (2%,0%,2%,52%) (0.02/0.00/0.02/0.52)
78 | 7A | 78 | |
---|---|---|---|
RGB | 120 | 122 | 120 |
HSL | 120° | 0.83% | 47.45% |
HSB/HSV | 120° | 1.64% | 47.84% |
CMYK | 1.64% | 0.00% | 1.64% |
52.16% |
HEX | 78 | 7A | 78 |
Decimal | 120 | 122 | 120 |
Binary | 1111000 | 1111010 | 1111000 |
Octal | 170 | 172 | 170 |
Examples of css and html codes for elements with #787A78 color. Also use rgb(120,122,120) instead hex code.
.myTextColor { color: #787A78; }
<p style="color:#787A78">This sample text font color is #787A78.</p>
This text font color is #787A78.
.myBgColor { background-color: #787A78; }
<div style="background-color:#787A78">Inner text</div>
This div background color is #787A78.
.myBorderColor { border: 1px solid #787A78; }
<div style="border:3px solid #787A78">Div</div>
This div border color is #787A78.
.myOpacity80 { color: #787A78; opacity: 0.8; }
<p style="color:#787A78;opacity:0.8;">80%</p>
Text with #787A78 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #787A78;}
<p style="text-shadow: 3px 3px 1px #787A78">Text here.</p>
This text has shadow with #787A78 color.
.textShadow {text-shadow: 3px 3px 1px #787A78, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #787A78, 5px 5px 20px red">Text here.</p>
This text has shadow with #787A78 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#787A78, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#787A78, Direction=45, Strength=4)">Text</p>
This text has shadow with #787A78 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #787A78; -webkit-box-shadow: 1px 1px 3px 2px #787A78; box-shadow: 1px 1px 3px 2px #787A78; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #787A78; -webkit-box-shadow: 1px 1px 3px 2px #787A78; box-shadow:1px 1px 3px 2px #787A78;">
Div content here</div>
This text has color #787A78 on black background.
This text has color #787A78 on white background.
This text has black color on #787A78 background.
This text has white color on #787A78 background.