HEX: #B0748D
RGB: (176,116,141)
#B0748D contains mainly red and blue colors. Web safe color of #B0748D is #996699 (or #969).
#B0748D color RGB value is (176,116,141).
RGB: (176,116,141) (69%,45%,55%)
R 176 of 255 = 69%
G 116 of 255 = 45%
B 141 of 255 = 55%
R + G + B ~ 56%. #B0748D is middle color (not dark and not light).
R + G + B =
176 + 116 + 141 = 433 (100%)
R 176 of 433 ~ 40.65%
G 116 of 433 ~ 26.79%
B 141 of 433 ~ 32.56%
#B0748D color CMYK value is (0,34,20,31).
CMYK: (0,34,20,31) C0M34Y20K31 (0%,34%,20%,31%) (0.00/0.34/0.20/0.31)
B0 | 74 | 8D | |
---|---|---|---|
RGB | 176 | 116 | 141 |
HSL | 335° | 27.52% | 57.25% |
HSB/HSV | 335° | 34.09% | 69.02% |
CMYK | 0.00% | 34.09% | 19.89% |
30.98% |
HEX | B0 | 74 | 8D |
Decimal | 176 | 116 | 141 |
Binary | 10110000 | 1110100 | 10001101 |
Octal | 260 | 164 | 215 |
Examples of css and html codes for elements with #B0748D color. Also use rgb(176,116,141) instead hex code.
.myTextColor { color: #B0748D; }
<p style="color:#B0748D">This sample text font color is #B0748D.</p>
This text font color is #B0748D.
.myBgColor { background-color: #B0748D; }
<div style="background-color:#B0748D">Inner text</div>
This div background color is #B0748D.
.myBorderColor { border: 1px solid #B0748D; }
<div style="border:3px solid #B0748D">Div</div>
This div border color is #B0748D.
.myOpacity80 { color: #B0748D; opacity: 0.8; }
<p style="color:#B0748D;opacity:0.8;">80%</p>
Text with #B0748D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B0748D;}
<p style="text-shadow: 3px 3px 1px #B0748D">Text here.</p>
This text has shadow with #B0748D color.
.textShadow {text-shadow: 3px 3px 1px #B0748D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B0748D, 5px 5px 20px red">Text here.</p>
This text has shadow with #B0748D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B0748D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B0748D, Direction=45, Strength=4)">Text</p>
This text has shadow with #B0748D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B0748D; -webkit-box-shadow: 1px 1px 3px 2px #B0748D; box-shadow: 1px 1px 3px 2px #B0748D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B0748D; -webkit-box-shadow: 1px 1px 3px 2px #B0748D; box-shadow:1px 1px 3px 2px #B0748D;">
Div content here</div>
This text has color #B0748D on black background.
This text has color #B0748D on white background.
This text has black color on #B0748D background.
This text has white color on #B0748D background.