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