HEX: #BA737D
RGB: (186,115,125)
#BA737D contains mainly red color. Web safe color of #BA737D is #CC6666 (or #C66).
#BA737D color RGB value is (186,115,125).
RGB: (186,115,125) (73%,45%,49%)
R 186 of 255 = 73%
G 115 of 255 = 45%
B 125 of 255 = 49%
R + G + B ~ 56%. #BA737D is middle color (not dark and not light).
R + G + B =
186 + 115 + 125 = 426 (100%)
R 186 of 426 ~ 43.66%
G 115 of 426 ~ 27%
B 125 of 426 ~ 29.34%
#BA737D color CMYK value is (0,38,33,27).
CMYK: (0,38,33,27) C0M38Y33K27 (0%,38%,33%,27%) (0.00/0.38/0.33/0.27)
BA | 73 | 7D | |
---|---|---|---|
RGB | 186 | 115 | 125 |
HSL | 352° | 33.97% | 59.02% |
HSB/HSV | 352° | 38.17% | 72.94% |
CMYK | 0.00% | 38.17% | 32.80% |
27.06% |
HEX | BA | 73 | 7D |
Decimal | 186 | 115 | 125 |
Binary | 10111010 | 1110011 | 1111101 |
Octal | 272 | 163 | 175 |
Examples of css and html codes for elements with #BA737D color. Also use rgb(186,115,125) instead hex code.
.myTextColor { color: #BA737D; }
<p style="color:#BA737D">This sample text font color is #BA737D.</p>
This text font color is #BA737D.
.myBgColor { background-color: #BA737D; }
<div style="background-color:#BA737D">Inner text</div>
This div background color is #BA737D.
.myBorderColor { border: 1px solid #BA737D; }
<div style="border:3px solid #BA737D">Div</div>
This div border color is #BA737D.
.myOpacity80 { color: #BA737D; opacity: 0.8; }
<p style="color:#BA737D;opacity:0.8;">80%</p>
Text with #BA737D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BA737D;}
<p style="text-shadow: 3px 3px 1px #BA737D">Text here.</p>
This text has shadow with #BA737D color.
.textShadow {text-shadow: 3px 3px 1px #BA737D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BA737D, 5px 5px 20px red">Text here.</p>
This text has shadow with #BA737D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BA737D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BA737D, Direction=45, Strength=4)">Text</p>
This text has shadow with #BA737D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BA737D; -webkit-box-shadow: 1px 1px 3px 2px #BA737D; box-shadow: 1px 1px 3px 2px #BA737D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BA737D; -webkit-box-shadow: 1px 1px 3px 2px #BA737D; box-shadow:1px 1px 3px 2px #BA737D;">
Div content here</div>
This text has color #BA737D on black background.
This text has color #BA737D on white background.
This text has black color on #BA737D background.
This text has white color on #BA737D background.