HEX: #B5768B
RGB: (181,118,139)
#B5768B contains mainly red and blue colors. Web safe color of #B5768B is #CC6699 (or #C69).
#B5768B color RGB value is (181,118,139).
RGB: (181,118,139) (71%,46%,55%)
R 181 of 255 = 71%
G 118 of 255 = 46%
B 139 of 255 = 55%
R + G + B ~ 57%. #B5768B is middle color (not dark and not light).
R + G + B =
181 + 118 + 139 = 438 (100%)
R 181 of 438 ~ 41.32%
G 118 of 438 ~ 26.94%
B 139 of 438 ~ 31.74%
#B5768B color CMYK value is (0,35,23,29).
CMYK: (0,35,23,29) C0M35Y23K29 (0%,35%,23%,29%) (0.00/0.35/0.23/0.29)
B5 | 76 | 8B | |
---|---|---|---|
RGB | 181 | 118 | 139 |
HSL | 340° | 29.86% | 58.63% |
HSB/HSV | 340° | 34.81% | 70.98% |
CMYK | 0.00% | 34.81% | 23.20% |
29.02% |
HEX | B5 | 76 | 8B |
Decimal | 181 | 118 | 139 |
Binary | 10110101 | 1110110 | 10001011 |
Octal | 265 | 166 | 213 |
Examples of css and html codes for elements with #B5768B color. Also use rgb(181,118,139) instead hex code.
.myTextColor { color: #B5768B; }
<p style="color:#B5768B">This sample text font color is #B5768B.</p>
This text font color is #B5768B.
.myBgColor { background-color: #B5768B; }
<div style="background-color:#B5768B">Inner text</div>
This div background color is #B5768B.
.myBorderColor { border: 1px solid #B5768B; }
<div style="border:3px solid #B5768B">Div</div>
This div border color is #B5768B.
.myOpacity80 { color: #B5768B; opacity: 0.8; }
<p style="color:#B5768B;opacity:0.8;">80%</p>
Text with #B5768B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5768B;}
<p style="text-shadow: 3px 3px 1px #B5768B">Text here.</p>
This text has shadow with #B5768B color.
.textShadow {text-shadow: 3px 3px 1px #B5768B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5768B, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5768B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5768B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5768B, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5768B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5768B; -webkit-box-shadow: 1px 1px 3px 2px #B5768B; box-shadow: 1px 1px 3px 2px #B5768B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5768B; -webkit-box-shadow: 1px 1px 3px 2px #B5768B; box-shadow:1px 1px 3px 2px #B5768B;">
Div content here</div>
This text has color #B5768B on black background.
This text has color #B5768B on white background.
This text has black color on #B5768B background.
This text has white color on #B5768B background.