HEX: #B9777E
RGB: (185,119,126)
#B9777E contains mainly red and blue colors. Web safe color of #B9777E is #CC6666 (or #C66).
#B9777E color RGB value is (185,119,126).
RGB: (185,119,126) (73%,47%,49%)
R 185 of 255 = 73%
G 119 of 255 = 47%
B 126 of 255 = 49%
R + G + B ~ 56%. #B9777E is middle color (not dark and not light).
R + G + B =
185 + 119 + 126 = 430 (100%)
R 185 of 430 ~ 43.02%
G 119 of 430 ~ 27.67%
B 126 of 430 ~ 29.3%
#B9777E color CMYK value is (0,36,32,27).
CMYK: (0,36,32,27) C0M36Y32K27 (0%,36%,32%,27%) (0.00/0.36/0.32/0.27)
B9 | 77 | 7E | |
---|---|---|---|
RGB | 185 | 119 | 126 |
HSL | 354° | 32.04% | 59.61% |
HSB/HSV | 354° | 35.68% | 72.55% |
CMYK | 0.00% | 35.68% | 31.89% |
27.45% |
HEX | B9 | 77 | 7E |
Decimal | 185 | 119 | 126 |
Binary | 10111001 | 1110111 | 1111110 |
Octal | 271 | 167 | 176 |
Examples of css and html codes for elements with #B9777E color. Also use rgb(185,119,126) instead hex code.
.myTextColor { color: #B9777E; }
<p style="color:#B9777E">This sample text font color is #B9777E.</p>
This text font color is #B9777E.
.myBgColor { background-color: #B9777E; }
<div style="background-color:#B9777E">Inner text</div>
This div background color is #B9777E.
.myBorderColor { border: 1px solid #B9777E; }
<div style="border:3px solid #B9777E">Div</div>
This div border color is #B9777E.
.myOpacity80 { color: #B9777E; opacity: 0.8; }
<p style="color:#B9777E;opacity:0.8;">80%</p>
Text with #B9777E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9777E;}
<p style="text-shadow: 3px 3px 1px #B9777E">Text here.</p>
This text has shadow with #B9777E color.
.textShadow {text-shadow: 3px 3px 1px #B9777E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9777E, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9777E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9777E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9777E, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9777E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9777E; -webkit-box-shadow: 1px 1px 3px 2px #B9777E; box-shadow: 1px 1px 3px 2px #B9777E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9777E; -webkit-box-shadow: 1px 1px 3px 2px #B9777E; box-shadow:1px 1px 3px 2px #B9777E;">
Div content here</div>
This text has color #B9777E on black background.
This text has color #B9777E on white background.
This text has black color on #B9777E background.
This text has white color on #B9777E background.