HEX: #B4596F
RGB: (180,89,111)
#B4596F contains mainly red color. Web safe color of #B4596F is #CC6666 (or #C66).
#B4596F color RGB value is (180,89,111).
RGB: (180,89,111) (71%,35%,44%)
R 180 of 255 = 71%
G 89 of 255 = 35%
B 111 of 255 = 44%
R + G + B ~ 50%. #B4596F is middle color (not dark and not light).
R + G + B =
180 + 89 + 111 = 380 (100%)
R 180 of 380 ~ 47.37%
G 89 of 380 ~ 23.42%
B 111 of 380 ~ 29.21%
#B4596F color CMYK value is (0,51,38,29).
CMYK: (0,51,38,29) C0M51Y38K29 (0%,51%,38%,29%) (0.00/0.51/0.38/0.29)
B4 | 59 | 6F | |
---|---|---|---|
RGB | 180 | 89 | 111 |
HSL | 345° | 37.76% | 52.75% |
HSB/HSV | 345° | 50.56% | 70.59% |
CMYK | 0.00% | 50.56% | 38.33% |
29.41% |
HEX | B4 | 59 | 6F |
Decimal | 180 | 89 | 111 |
Binary | 10110100 | 1011001 | 1101111 |
Octal | 264 | 131 | 157 |
Examples of css and html codes for elements with #B4596F color. Also use rgb(180,89,111) instead hex code.
.myTextColor { color: #B4596F; }
<p style="color:#B4596F">This sample text font color is #B4596F.</p>
This text font color is #B4596F.
.myBgColor { background-color: #B4596F; }
<div style="background-color:#B4596F">Inner text</div>
This div background color is #B4596F.
.myBorderColor { border: 1px solid #B4596F; }
<div style="border:3px solid #B4596F">Div</div>
This div border color is #B4596F.
.myOpacity80 { color: #B4596F; opacity: 0.8; }
<p style="color:#B4596F;opacity:0.8;">80%</p>
Text with #B4596F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4596F;}
<p style="text-shadow: 3px 3px 1px #B4596F">Text here.</p>
This text has shadow with #B4596F color.
.textShadow {text-shadow: 3px 3px 1px #B4596F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4596F, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4596F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4596F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4596F, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4596F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4596F; -webkit-box-shadow: 1px 1px 3px 2px #B4596F; box-shadow: 1px 1px 3px 2px #B4596F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4596F; -webkit-box-shadow: 1px 1px 3px 2px #B4596F; box-shadow:1px 1px 3px 2px #B4596F;">
Div content here</div>
This text has color #B4596F on black background.
This text has color #B4596F on white background.
This text has black color on #B4596F background.
This text has white color on #B4596F background.