HEX: #BC4B76
RGB: (188,75,118)
#BC4B76 contains mainly red color. Web safe color of #BC4B76 is #CC3366 (or #C36).
#BC4B76 color RGB value is (188,75,118).
RGB: (188,75,118) (74%,29%,46%)
R 188 of 255 = 74%
G 75 of 255 = 29%
B 118 of 255 = 46%
R + G + B ~ 50%. #BC4B76 is middle color (not dark and not light).
R + G + B =
188 + 75 + 118 = 381 (100%)
R 188 of 381 ~ 49.34%
G 75 of 381 ~ 19.69%
B 118 of 381 ~ 30.97%
#BC4B76 color CMYK value is (0,60,37,26).
CMYK: (0,60,37,26) C0M60Y37K26 (0%,60%,37%,26%) (0.00/0.60/0.37/0.26)
BC | 4B | 76 | |
---|---|---|---|
RGB | 188 | 75 | 118 |
HSL | 337° | 45.75% | 51.57% |
HSB/HSV | 337° | 60.11% | 73.73% |
CMYK | 0.00% | 60.11% | 37.23% |
26.27% |
HEX | BC | 4B | 76 |
Decimal | 188 | 75 | 118 |
Binary | 10111100 | 1001011 | 1110110 |
Octal | 274 | 113 | 166 |
Examples of css and html codes for elements with #BC4B76 color. Also use rgb(188,75,118) instead hex code.
.myTextColor { color: #BC4B76; }
<p style="color:#BC4B76">This sample text font color is #BC4B76.</p>
This text font color is #BC4B76.
.myBgColor { background-color: #BC4B76; }
<div style="background-color:#BC4B76">Inner text</div>
This div background color is #BC4B76.
.myBorderColor { border: 1px solid #BC4B76; }
<div style="border:3px solid #BC4B76">Div</div>
This div border color is #BC4B76.
.myOpacity80 { color: #BC4B76; opacity: 0.8; }
<p style="color:#BC4B76;opacity:0.8;">80%</p>
Text with #BC4B76 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC4B76;}
<p style="text-shadow: 3px 3px 1px #BC4B76">Text here.</p>
This text has shadow with #BC4B76 color.
.textShadow {text-shadow: 3px 3px 1px #BC4B76, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC4B76, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC4B76 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC4B76, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC4B76, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC4B76 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC4B76; -webkit-box-shadow: 1px 1px 3px 2px #BC4B76; box-shadow: 1px 1px 3px 2px #BC4B76; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC4B76; -webkit-box-shadow: 1px 1px 3px 2px #BC4B76; box-shadow:1px 1px 3px 2px #BC4B76;">
Div content here</div>
This text has color #BC4B76 on black background.
This text has color #BC4B76 on white background.
This text has black color on #BC4B76 background.
This text has white color on #BC4B76 background.