HEX: #B1828B
RGB: (177,130,139)
#B1828B contains red, green and blue colors in about the same proportion. Web safe color of #B1828B is #999999 (or #999).
#B1828B color RGB value is (177,130,139).
RGB: (177,130,139) (69%,51%,55%)
R 177 of 255 = 69%
G 130 of 255 = 51%
B 139 of 255 = 55%
R + G + B ~ 58%. #B1828B is middle color (not dark and not light).
R + G + B =
177 + 130 + 139 = 446 (100%)
R 177 of 446 ~ 39.69%
G 130 of 446 ~ 29.15%
B 139 of 446 ~ 31.17%
#B1828B color CMYK value is (0,27,21,31).
CMYK: (0,27,21,31) C0M27Y21K31 (0%,27%,21%,31%) (0.00/0.27/0.21/0.31)
B1 | 82 | 8B | |
---|---|---|---|
RGB | 177 | 130 | 139 |
HSL | 349° | 23.15% | 60.20% |
HSB/HSV | 349° | 26.55% | 69.41% |
CMYK | 0.00% | 26.55% | 21.47% |
30.59% |
HEX | B1 | 82 | 8B |
Decimal | 177 | 130 | 139 |
Binary | 10110001 | 10000010 | 10001011 |
Octal | 261 | 202 | 213 |
Examples of css and html codes for elements with #B1828B color. Also use rgb(177,130,139) instead hex code.
.myTextColor { color: #B1828B; }
<p style="color:#B1828B">This sample text font color is #B1828B.</p>
This text font color is #B1828B.
.myBgColor { background-color: #B1828B; }
<div style="background-color:#B1828B">Inner text</div>
This div background color is #B1828B.
.myBorderColor { border: 1px solid #B1828B; }
<div style="border:3px solid #B1828B">Div</div>
This div border color is #B1828B.
.myOpacity80 { color: #B1828B; opacity: 0.8; }
<p style="color:#B1828B;opacity:0.8;">80%</p>
Text with #B1828B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B1828B;}
<p style="text-shadow: 3px 3px 1px #B1828B">Text here.</p>
This text has shadow with #B1828B color.
.textShadow {text-shadow: 3px 3px 1px #B1828B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B1828B, 5px 5px 20px red">Text here.</p>
This text has shadow with #B1828B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B1828B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B1828B, Direction=45, Strength=4)">Text</p>
This text has shadow with #B1828B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B1828B; -webkit-box-shadow: 1px 1px 3px 2px #B1828B; box-shadow: 1px 1px 3px 2px #B1828B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B1828B; -webkit-box-shadow: 1px 1px 3px 2px #B1828B; box-shadow:1px 1px 3px 2px #B1828B;">
Div content here</div>
This text has color #B1828B on black background.
This text has color #B1828B on white background.
This text has black color on #B1828B background.
This text has white color on #B1828B background.