HEX: #A7779D
RGB: (167,119,157)
#A7779D contains red, green and blue colors in about the same proportion. Web safe color of #A7779D is #996699 (or #969).
#A7779D color RGB value is (167,119,157).
RGB: (167,119,157) (65%,47%,62%)
R 167 of 255 = 65%
G 119 of 255 = 47%
B 157 of 255 = 62%
R + G + B ~ 58%. #A7779D is middle color (not dark and not light).
R + G + B =
167 + 119 + 157 = 443 (100%)
R 167 of 443 ~ 37.7%
G 119 of 443 ~ 26.86%
B 157 of 443 ~ 35.44%
#A7779D color CMYK value is (0,29,6,35).
CMYK: (0,29,6,35) C0M29Y6K35 (0%,29%,6%,35%) (0.00/0.29/0.06/0.35)
A7 | 77 | 9D | |
---|---|---|---|
RGB | 167 | 119 | 157 |
HSL | 313° | 21.43% | 56.08% |
HSB/HSV | 313° | 28.74% | 65.49% |
CMYK | 0.00% | 28.74% | 5.99% |
34.51% |
HEX | A7 | 77 | 9D |
Decimal | 167 | 119 | 157 |
Binary | 10100111 | 1110111 | 10011101 |
Octal | 247 | 167 | 235 |
Examples of css and html codes for elements with #A7779D color. Also use rgb(167,119,157) instead hex code.
.myTextColor { color: #A7779D; }
<p style="color:#A7779D">This sample text font color is #A7779D.</p>
This text font color is #A7779D.
.myBgColor { background-color: #A7779D; }
<div style="background-color:#A7779D">Inner text</div>
This div background color is #A7779D.
.myBorderColor { border: 1px solid #A7779D; }
<div style="border:3px solid #A7779D">Div</div>
This div border color is #A7779D.
.myOpacity80 { color: #A7779D; opacity: 0.8; }
<p style="color:#A7779D;opacity:0.8;">80%</p>
Text with #A7779D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A7779D;}
<p style="text-shadow: 3px 3px 1px #A7779D">Text here.</p>
This text has shadow with #A7779D color.
.textShadow {text-shadow: 3px 3px 1px #A7779D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A7779D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A7779D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A7779D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A7779D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A7779D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A7779D; -webkit-box-shadow: 1px 1px 3px 2px #A7779D; box-shadow: 1px 1px 3px 2px #A7779D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A7779D; -webkit-box-shadow: 1px 1px 3px 2px #A7779D; box-shadow:1px 1px 3px 2px #A7779D;">
Div content here</div>
This text has color #A7779D on black background.
This text has color #A7779D on white background.
This text has black color on #A7779D background.
This text has white color on #A7779D background.