HEX: #BC7972
RGB: (188,121,114)
#BC7972 contains mainly red color. Web safe color of #BC7972 is #CC6666 (or #C66).
#BC7972 color RGB value is (188,121,114).
RGB: (188,121,114) (74%,47%,45%)
R 188 of 255 = 74%
G 121 of 255 = 47%
B 114 of 255 = 45%
R + G + B ~ 55%. #BC7972 is middle color (not dark and not light).
R + G + B =
188 + 121 + 114 = 423 (100%)
R 188 of 423 ~ 44.44%
G 121 of 423 ~ 28.61%
B 114 of 423 ~ 26.95%
#BC7972 color CMYK value is (0,36,39,26).
CMYK: (0,36,39,26) C0M36Y39K26 (0%,36%,39%,26%) (0.00/0.36/0.39/0.26)
BC | 79 | 72 | |
---|---|---|---|
RGB | 188 | 121 | 114 |
HSL | 6° | 35.58% | 59.22% |
HSB/HSV | 6° | 39.36% | 73.73% |
CMYK | 0.00% | 35.64% | 39.36% |
26.27% |
HEX | BC | 79 | 72 |
Decimal | 188 | 121 | 114 |
Binary | 10111100 | 1111001 | 1110010 |
Octal | 274 | 171 | 162 |
Examples of css and html codes for elements with #BC7972 color. Also use rgb(188,121,114) instead hex code.
.myTextColor { color: #BC7972; }
<p style="color:#BC7972">This sample text font color is #BC7972.</p>
This text font color is #BC7972.
.myBgColor { background-color: #BC7972; }
<div style="background-color:#BC7972">Inner text</div>
This div background color is #BC7972.
.myBorderColor { border: 1px solid #BC7972; }
<div style="border:3px solid #BC7972">Div</div>
This div border color is #BC7972.
.myOpacity80 { color: #BC7972; opacity: 0.8; }
<p style="color:#BC7972;opacity:0.8;">80%</p>
Text with #BC7972 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC7972;}
<p style="text-shadow: 3px 3px 1px #BC7972">Text here.</p>
This text has shadow with #BC7972 color.
.textShadow {text-shadow: 3px 3px 1px #BC7972, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC7972, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC7972 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC7972, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC7972, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC7972 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC7972; -webkit-box-shadow: 1px 1px 3px 2px #BC7972; box-shadow: 1px 1px 3px 2px #BC7972; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC7972; -webkit-box-shadow: 1px 1px 3px 2px #BC7972; box-shadow:1px 1px 3px 2px #BC7972;">
Div content here</div>
This text has color #BC7972 on black background.
This text has color #BC7972 on white background.
This text has black color on #BC7972 background.
This text has white color on #BC7972 background.