HEX: #B1768D
RGB: (177,118,141)
#B1768D contains red, green and blue colors in about the same proportion. Web safe color of #B1768D is #996699 (or #969).
#B1768D color RGB value is (177,118,141).
RGB: (177,118,141) (69%,46%,55%)
R 177 of 255 = 69%
G 118 of 255 = 46%
B 141 of 255 = 55%
R + G + B ~ 57%. #B1768D is middle color (not dark and not light).
R + G + B =
177 + 118 + 141 = 436 (100%)
R 177 of 436 ~ 40.6%
G 118 of 436 ~ 27.06%
B 141 of 436 ~ 32.34%
#B1768D color CMYK value is (0,33,20,31).
CMYK: (0,33,20,31) C0M33Y20K31 (0%,33%,20%,31%) (0.00/0.33/0.20/0.31)
B1 | 76 | 8D | |
---|---|---|---|
RGB | 177 | 118 | 141 |
HSL | 337° | 27.44% | 57.84% |
HSB/HSV | 337° | 33.33% | 69.41% |
CMYK | 0.00% | 33.33% | 20.34% |
30.59% |
HEX | B1 | 76 | 8D |
Decimal | 177 | 118 | 141 |
Binary | 10110001 | 1110110 | 10001101 |
Octal | 261 | 166 | 215 |
Examples of css and html codes for elements with #B1768D color. Also use rgb(177,118,141) instead hex code.
.myTextColor { color: #B1768D; }
<p style="color:#B1768D">This sample text font color is #B1768D.</p>
This text font color is #B1768D.
.myBgColor { background-color: #B1768D; }
<div style="background-color:#B1768D">Inner text</div>
This div background color is #B1768D.
.myBorderColor { border: 1px solid #B1768D; }
<div style="border:3px solid #B1768D">Div</div>
This div border color is #B1768D.
.myOpacity80 { color: #B1768D; opacity: 0.8; }
<p style="color:#B1768D;opacity:0.8;">80%</p>
Text with #B1768D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B1768D;}
<p style="text-shadow: 3px 3px 1px #B1768D">Text here.</p>
This text has shadow with #B1768D color.
.textShadow {text-shadow: 3px 3px 1px #B1768D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B1768D, 5px 5px 20px red">Text here.</p>
This text has shadow with #B1768D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B1768D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B1768D, Direction=45, Strength=4)">Text</p>
This text has shadow with #B1768D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B1768D; -webkit-box-shadow: 1px 1px 3px 2px #B1768D; box-shadow: 1px 1px 3px 2px #B1768D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B1768D; -webkit-box-shadow: 1px 1px 3px 2px #B1768D; box-shadow:1px 1px 3px 2px #B1768D;">
Div content here</div>
This text has color #B1768D on black background.
This text has color #B1768D on white background.
This text has black color on #B1768D background.
This text has white color on #B1768D background.