HEX: #B5596D
RGB: (181,89,109)
#B5596D contains mainly red color. Web safe color of #B5596D is #CC6666 (or #C66).
#B5596D color RGB value is (181,89,109).
RGB: (181,89,109) (71%,35%,43%)
R 181 of 255 = 71%
G 89 of 255 = 35%
B 109 of 255 = 43%
R + G + B ~ 50%. #B5596D is middle color (not dark and not light).
R + G + B =
181 + 89 + 109 = 379 (100%)
R 181 of 379 ~ 47.76%
G 89 of 379 ~ 23.48%
B 109 of 379 ~ 28.76%
#B5596D color CMYK value is (0,51,40,29).
CMYK: (0,51,40,29) C0M51Y40K29 (0%,51%,40%,29%) (0.00/0.51/0.40/0.29)
B5 | 59 | 6D | |
---|---|---|---|
RGB | 181 | 89 | 109 |
HSL | 347° | 38.33% | 52.94% |
HSB/HSV | 347° | 50.83% | 70.98% |
CMYK | 0.00% | 50.83% | 39.78% |
29.02% |
HEX | B5 | 59 | 6D |
Decimal | 181 | 89 | 109 |
Binary | 10110101 | 1011001 | 1101101 |
Octal | 265 | 131 | 155 |
Examples of css and html codes for elements with #B5596D color. Also use rgb(181,89,109) instead hex code.
.myTextColor { color: #B5596D; }
<p style="color:#B5596D">This sample text font color is #B5596D.</p>
This text font color is #B5596D.
.myBgColor { background-color: #B5596D; }
<div style="background-color:#B5596D">Inner text</div>
This div background color is #B5596D.
.myBorderColor { border: 1px solid #B5596D; }
<div style="border:3px solid #B5596D">Div</div>
This div border color is #B5596D.
.myOpacity80 { color: #B5596D; opacity: 0.8; }
<p style="color:#B5596D;opacity:0.8;">80%</p>
Text with #B5596D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5596D;}
<p style="text-shadow: 3px 3px 1px #B5596D">Text here.</p>
This text has shadow with #B5596D color.
.textShadow {text-shadow: 3px 3px 1px #B5596D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5596D, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5596D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5596D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5596D, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5596D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5596D; -webkit-box-shadow: 1px 1px 3px 2px #B5596D; box-shadow: 1px 1px 3px 2px #B5596D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5596D; -webkit-box-shadow: 1px 1px 3px 2px #B5596D; box-shadow:1px 1px 3px 2px #B5596D;">
Div content here</div>
This text has color #B5596D on black background.
This text has color #B5596D on white background.
This text has black color on #B5596D background.
This text has white color on #B5596D background.