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