HEX: #B0607C
RGB: (176,96,124)
#B0607C contains mainly red and blue colors. Web safe color of #B0607C is #996666 (or #966).
#B0607C color RGB value is (176,96,124).
RGB: (176,96,124) (69%,38%,49%)
R 176 of 255 = 69%
G 96 of 255 = 38%
B 124 of 255 = 49%
R + G + B ~ 52%. #B0607C is middle color (not dark and not light).
R + G + B =
176 + 96 + 124 = 396 (100%)
R 176 of 396 ~ 44.44%
G 96 of 396 ~ 24.24%
B 124 of 396 ~ 31.31%
#B0607C color CMYK value is (0,45,30,31).
CMYK: (0,45,30,31) C0M45Y30K31 (0%,45%,30%,31%) (0.00/0.45/0.30/0.31)
B0 | 60 | 7C | |
---|---|---|---|
RGB | 176 | 96 | 124 |
HSL | 339° | 33.61% | 53.33% |
HSB/HSV | 339° | 45.45% | 69.02% |
CMYK | 0.00% | 45.45% | 29.55% |
30.98% |
HEX | B0 | 60 | 7C |
Decimal | 176 | 96 | 124 |
Binary | 10110000 | 1100000 | 1111100 |
Octal | 260 | 140 | 174 |
Examples of css and html codes for elements with #B0607C color. Also use rgb(176,96,124) instead hex code.
.myTextColor { color: #B0607C; }
<p style="color:#B0607C">This sample text font color is #B0607C.</p>
This text font color is #B0607C.
.myBgColor { background-color: #B0607C; }
<div style="background-color:#B0607C">Inner text</div>
This div background color is #B0607C.
.myBorderColor { border: 1px solid #B0607C; }
<div style="border:3px solid #B0607C">Div</div>
This div border color is #B0607C.
.myOpacity80 { color: #B0607C; opacity: 0.8; }
<p style="color:#B0607C;opacity:0.8;">80%</p>
Text with #B0607C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B0607C;}
<p style="text-shadow: 3px 3px 1px #B0607C">Text here.</p>
This text has shadow with #B0607C color.
.textShadow {text-shadow: 3px 3px 1px #B0607C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B0607C, 5px 5px 20px red">Text here.</p>
This text has shadow with #B0607C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B0607C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B0607C, Direction=45, Strength=4)">Text</p>
This text has shadow with #B0607C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B0607C; -webkit-box-shadow: 1px 1px 3px 2px #B0607C; box-shadow: 1px 1px 3px 2px #B0607C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B0607C; -webkit-box-shadow: 1px 1px 3px 2px #B0607C; box-shadow:1px 1px 3px 2px #B0607C;">
Div content here</div>
This text has color #B0607C on black background.
This text has color #B0607C on white background.
This text has black color on #B0607C background.
This text has white color on #B0607C background.