HEX: #B5738C
RGB: (181,115,140)
#B5738C contains mainly red and blue colors. Web safe color of #B5738C is #CC6699 (or #C69).
#B5738C color RGB value is (181,115,140).
RGB: (181,115,140) (71%,45%,55%)
R 181 of 255 = 71%
G 115 of 255 = 45%
B 140 of 255 = 55%
R + G + B ~ 57%. #B5738C is middle color (not dark and not light).
R + G + B =
181 + 115 + 140 = 436 (100%)
R 181 of 436 ~ 41.51%
G 115 of 436 ~ 26.38%
B 140 of 436 ~ 32.11%
#B5738C color CMYK value is (0,36,23,29).
CMYK: (0,36,23,29) C0M36Y23K29 (0%,36%,23%,29%) (0.00/0.36/0.23/0.29)
B5 | 73 | 8C | |
---|---|---|---|
RGB | 181 | 115 | 140 |
HSL | 337° | 30.84% | 58.04% |
HSB/HSV | 337° | 36.46% | 70.98% |
CMYK | 0.00% | 36.46% | 22.65% |
29.02% |
HEX | B5 | 73 | 8C |
Decimal | 181 | 115 | 140 |
Binary | 10110101 | 1110011 | 10001100 |
Octal | 265 | 163 | 214 |
Examples of css and html codes for elements with #B5738C color. Also use rgb(181,115,140) instead hex code.
.myTextColor { color: #B5738C; }
<p style="color:#B5738C">This sample text font color is #B5738C.</p>
This text font color is #B5738C.
.myBgColor { background-color: #B5738C; }
<div style="background-color:#B5738C">Inner text</div>
This div background color is #B5738C.
.myBorderColor { border: 1px solid #B5738C; }
<div style="border:3px solid #B5738C">Div</div>
This div border color is #B5738C.
.myOpacity80 { color: #B5738C; opacity: 0.8; }
<p style="color:#B5738C;opacity:0.8;">80%</p>
Text with #B5738C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5738C;}
<p style="text-shadow: 3px 3px 1px #B5738C">Text here.</p>
This text has shadow with #B5738C color.
.textShadow {text-shadow: 3px 3px 1px #B5738C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5738C, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5738C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5738C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5738C, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5738C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5738C; -webkit-box-shadow: 1px 1px 3px 2px #B5738C; box-shadow: 1px 1px 3px 2px #B5738C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5738C; -webkit-box-shadow: 1px 1px 3px 2px #B5738C; box-shadow:1px 1px 3px 2px #B5738C;">
Div content here</div>
This text has color #B5738C on black background.
This text has color #B5738C on white background.
This text has black color on #B5738C background.
This text has white color on #B5738C background.