HEX: #B61D77
RGB: (182,29,119)
#B61D77 contains mainly red color. Web safe color of #B61D77 is #CC3366 (or #C36).
#B61D77 color RGB value is (182,29,119).
RGB: (182,29,119) (71%,11%,47%)
R 182 of 255 = 71%
G 29 of 255 = 11%
B 119 of 255 = 47%
R + G + B ~ 43%. #B61D77 is middle color (not dark and not light).
R + G + B =
182 + 29 + 119 = 330 (100%)
R 182 of 330 ~ 55.15%
G 29 of 330 ~ 8.79%
B 119 of 330 ~ 36.06%
#B61D77 color CMYK value is (0,84,35,29).
CMYK: (0,84,35,29) C0M84Y35K29 (0%,84%,35%,29%) (0.00/0.84/0.35/0.29)
B6 | 1D | 77 | |
---|---|---|---|
RGB | 182 | 29 | 119 |
HSL | 325° | 72.51% | 41.37% |
HSB/HSV | 325° | 84.07% | 71.37% |
CMYK | 0.00% | 84.07% | 34.62% |
28.63% |
HEX | B6 | 1D | 77 |
Decimal | 182 | 29 | 119 |
Binary | 10110110 | 11101 | 1110111 |
Octal | 266 | 35 | 167 |
Examples of css and html codes for elements with #B61D77 color. Also use rgb(182,29,119) instead hex code.
.myTextColor { color: #B61D77; }
<p style="color:#B61D77">This sample text font color is #B61D77.</p>
This text font color is #B61D77.
.myBgColor { background-color: #B61D77; }
<div style="background-color:#B61D77">Inner text</div>
This div background color is #B61D77.
.myBorderColor { border: 1px solid #B61D77; }
<div style="border:3px solid #B61D77">Div</div>
This div border color is #B61D77.
.myOpacity80 { color: #B61D77; opacity: 0.8; }
<p style="color:#B61D77;opacity:0.8;">80%</p>
Text with #B61D77 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B61D77;}
<p style="text-shadow: 3px 3px 1px #B61D77">Text here.</p>
This text has shadow with #B61D77 color.
.textShadow {text-shadow: 3px 3px 1px #B61D77, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B61D77, 5px 5px 20px red">Text here.</p>
This text has shadow with #B61D77 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B61D77, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B61D77, Direction=45, Strength=4)">Text</p>
This text has shadow with #B61D77 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B61D77; -webkit-box-shadow: 1px 1px 3px 2px #B61D77; box-shadow: 1px 1px 3px 2px #B61D77; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B61D77; -webkit-box-shadow: 1px 1px 3px 2px #B61D77; box-shadow:1px 1px 3px 2px #B61D77;">
Div content here</div>
This text has color #B61D77 on black background.
This text has color #B61D77 on white background.
This text has black color on #B61D77 background.
This text has white color on #B61D77 background.