HEX: #776163
RGB: (119,97,99)
#776163 contains red, green and blue colors in about the same proportion. Web safe color of #776163 is #666666 (or #666).
#776163 color RGB value is (119,97,99).
RGB: (119,97,99) (47%,38%,39%)
R 119 of 255 = 47%
G 97 of 255 = 38%
B 99 of 255 = 39%
R + G + B ~ 41%. #776163 is middle color (not dark and not light).
R + G + B =
119 + 97 + 99 = 315 (100%)
R 119 of 315 ~ 37.78%
G 97 of 315 ~ 30.79%
B 99 of 315 ~ 31.43%
#776163 color CMYK value is (0,18,17,53).
CMYK: (0,18,17,53) C0M18Y17K53 (0%,18%,17%,53%) (0.00/0.18/0.17/0.53)
77 | 61 | 63 | |
---|---|---|---|
RGB | 119 | 97 | 99 |
HSL | 355° | 10.19% | 42.35% |
HSB/HSV | 355° | 18.49% | 46.67% |
CMYK | 0.00% | 18.49% | 16.81% |
53.33% |
HEX | 77 | 61 | 63 |
Decimal | 119 | 97 | 99 |
Binary | 1110111 | 1100001 | 1100011 |
Octal | 167 | 141 | 143 |
Examples of css and html codes for elements with #776163 color. Also use rgb(119,97,99) instead hex code.
.myTextColor { color: #776163; }
<p style="color:#776163">This sample text font color is #776163.</p>
This text font color is #776163.
.myBgColor { background-color: #776163; }
<div style="background-color:#776163">Inner text</div>
This div background color is #776163.
.myBorderColor { border: 1px solid #776163; }
<div style="border:3px solid #776163">Div</div>
This div border color is #776163.
.myOpacity80 { color: #776163; opacity: 0.8; }
<p style="color:#776163;opacity:0.8;">80%</p>
Text with #776163 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #776163;}
<p style="text-shadow: 3px 3px 1px #776163">Text here.</p>
This text has shadow with #776163 color.
.textShadow {text-shadow: 3px 3px 1px #776163, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #776163, 5px 5px 20px red">Text here.</p>
This text has shadow with #776163 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#776163, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#776163, Direction=45, Strength=4)">Text</p>
This text has shadow with #776163 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #776163; -webkit-box-shadow: 1px 1px 3px 2px #776163; box-shadow: 1px 1px 3px 2px #776163; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #776163; -webkit-box-shadow: 1px 1px 3px 2px #776163; box-shadow:1px 1px 3px 2px #776163;">
Div content here</div>
This text has color #776163 on black background.
This text has color #776163 on white background.
This text has black color on #776163 background.
This text has white color on #776163 background.