HEX: #B2737D
RGB: (178,115,125)
#B2737D contains mainly red and blue colors. Web safe color of #B2737D is #996666 (or #966).
#B2737D color RGB value is (178,115,125).
RGB: (178,115,125) (70%,45%,49%)
R 178 of 255 = 70%
G 115 of 255 = 45%
B 125 of 255 = 49%
R + G + B ~ 55%. #B2737D is middle color (not dark and not light).
R + G + B =
178 + 115 + 125 = 418 (100%)
R 178 of 418 ~ 42.58%
G 115 of 418 ~ 27.51%
B 125 of 418 ~ 29.9%
#B2737D color CMYK value is (0,35,30,30).
CMYK: (0,35,30,30) C0M35Y30K30 (0%,35%,30%,30%) (0.00/0.35/0.30/0.30)
B2 | 73 | 7D | |
---|---|---|---|
RGB | 178 | 115 | 125 |
HSL | 350° | 29.03% | 57.45% |
HSB/HSV | 350° | 35.39% | 69.80% |
CMYK | 0.00% | 35.39% | 29.78% |
30.20% |
HEX | B2 | 73 | 7D |
Decimal | 178 | 115 | 125 |
Binary | 10110010 | 1110011 | 1111101 |
Octal | 262 | 163 | 175 |
Examples of css and html codes for elements with #B2737D color. Also use rgb(178,115,125) instead hex code.
.myTextColor { color: #B2737D; }
<p style="color:#B2737D">This sample text font color is #B2737D.</p>
This text font color is #B2737D.
.myBgColor { background-color: #B2737D; }
<div style="background-color:#B2737D">Inner text</div>
This div background color is #B2737D.
.myBorderColor { border: 1px solid #B2737D; }
<div style="border:3px solid #B2737D">Div</div>
This div border color is #B2737D.
.myOpacity80 { color: #B2737D; opacity: 0.8; }
<p style="color:#B2737D;opacity:0.8;">80%</p>
Text with #B2737D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B2737D;}
<p style="text-shadow: 3px 3px 1px #B2737D">Text here.</p>
This text has shadow with #B2737D color.
.textShadow {text-shadow: 3px 3px 1px #B2737D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B2737D, 5px 5px 20px red">Text here.</p>
This text has shadow with #B2737D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B2737D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B2737D, Direction=45, Strength=4)">Text</p>
This text has shadow with #B2737D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B2737D; -webkit-box-shadow: 1px 1px 3px 2px #B2737D; box-shadow: 1px 1px 3px 2px #B2737D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B2737D; -webkit-box-shadow: 1px 1px 3px 2px #B2737D; box-shadow:1px 1px 3px 2px #B2737D;">
Div content here</div>
This text has color #B2737D on black background.
This text has color #B2737D on white background.
This text has black color on #B2737D background.
This text has white color on #B2737D background.