HEX: #776784
RGB: (119,103,132)
#776784 contains red, green and blue colors in about the same proportion. Web safe color of #776784 is #666699 (or #669).
#776784 color RGB value is (119,103,132).
RGB: (119,103,132) (47%,40%,52%)
R 119 of 255 = 47%
G 103 of 255 = 40%
B 132 of 255 = 52%
R + G + B ~ 46%. #776784 is middle color (not dark and not light).
R + G + B =
119 + 103 + 132 = 354 (100%)
R 119 of 354 ~ 33.62%
G 103 of 354 ~ 29.1%
B 132 of 354 ~ 37.29%
#776784 color CMYK value is (10,22,0,48).
CMYK: (10,22,0,48) C10M22Y0K48 (10%,22%,0%,48%) (0.10/0.22/0.00/0.48)
77 | 67 | 84 | |
---|---|---|---|
RGB | 119 | 103 | 132 |
HSL | 273° | 12.34% | 46.08% |
HSB/HSV | 273° | 21.97% | 51.76% |
CMYK | 9.85% | 21.97% | 0.00% |
48.24% |
HEX | 77 | 67 | 84 |
Decimal | 119 | 103 | 132 |
Binary | 1110111 | 1100111 | 10000100 |
Octal | 167 | 147 | 204 |
Examples of css and html codes for elements with #776784 color. Also use rgb(119,103,132) instead hex code.
.myTextColor { color: #776784; }
<p style="color:#776784">This sample text font color is #776784.</p>
This text font color is #776784.
.myBgColor { background-color: #776784; }
<div style="background-color:#776784">Inner text</div>
This div background color is #776784.
.myBorderColor { border: 1px solid #776784; }
<div style="border:3px solid #776784">Div</div>
This div border color is #776784.
.myOpacity80 { color: #776784; opacity: 0.8; }
<p style="color:#776784;opacity:0.8;">80%</p>
Text with #776784 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #776784;}
<p style="text-shadow: 3px 3px 1px #776784">Text here.</p>
This text has shadow with #776784 color.
.textShadow {text-shadow: 3px 3px 1px #776784, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #776784, 5px 5px 20px red">Text here.</p>
This text has shadow with #776784 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#776784, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#776784, Direction=45, Strength=4)">Text</p>
This text has shadow with #776784 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #776784; -webkit-box-shadow: 1px 1px 3px 2px #776784; box-shadow: 1px 1px 3px 2px #776784; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #776784; -webkit-box-shadow: 1px 1px 3px 2px #776784; box-shadow:1px 1px 3px 2px #776784;">
Div content here</div>
This text has color #776784 on black background.
This text has color #776784 on white background.
This text has black color on #776784 background.
This text has white color on #776784 background.