HEX: #BC7576
RGB: (188,117,118)
#BC7576 contains mainly red color. Web safe color of #BC7576 is #CC6666 (or #C66).
#BC7576 color RGB value is (188,117,118).
RGB: (188,117,118) (74%,46%,46%)
R 188 of 255 = 74%
G 117 of 255 = 46%
B 118 of 255 = 46%
R + G + B ~ 55%. #BC7576 is middle color (not dark and not light).
R + G + B =
188 + 117 + 118 = 423 (100%)
R 188 of 423 ~ 44.44%
G 117 of 423 ~ 27.66%
B 118 of 423 ~ 27.9%
#BC7576 color CMYK value is (0,38,37,26).
CMYK: (0,38,37,26) C0M38Y37K26 (0%,38%,37%,26%) (0.00/0.38/0.37/0.26)
BC | 75 | 76 | |
---|---|---|---|
RGB | 188 | 117 | 118 |
HSL | 359° | 34.63% | 59.80% |
HSB/HSV | 359° | 37.77% | 73.73% |
CMYK | 0.00% | 37.77% | 37.23% |
26.27% |
HEX | BC | 75 | 76 |
Decimal | 188 | 117 | 118 |
Binary | 10111100 | 1110101 | 1110110 |
Octal | 274 | 165 | 166 |
Examples of css and html codes for elements with #BC7576 color. Also use rgb(188,117,118) instead hex code.
.myTextColor { color: #BC7576; }
<p style="color:#BC7576">This sample text font color is #BC7576.</p>
This text font color is #BC7576.
.myBgColor { background-color: #BC7576; }
<div style="background-color:#BC7576">Inner text</div>
This div background color is #BC7576.
.myBorderColor { border: 1px solid #BC7576; }
<div style="border:3px solid #BC7576">Div</div>
This div border color is #BC7576.
.myOpacity80 { color: #BC7576; opacity: 0.8; }
<p style="color:#BC7576;opacity:0.8;">80%</p>
Text with #BC7576 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC7576;}
<p style="text-shadow: 3px 3px 1px #BC7576">Text here.</p>
This text has shadow with #BC7576 color.
.textShadow {text-shadow: 3px 3px 1px #BC7576, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC7576, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC7576 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC7576, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC7576, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC7576 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC7576; -webkit-box-shadow: 1px 1px 3px 2px #BC7576; box-shadow: 1px 1px 3px 2px #BC7576; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC7576; -webkit-box-shadow: 1px 1px 3px 2px #BC7576; box-shadow:1px 1px 3px 2px #BC7576;">
Div content here</div>
This text has color #BC7576 on black background.
This text has color #BC7576 on white background.
This text has black color on #BC7576 background.
This text has white color on #BC7576 background.