HEX: #BC824A
RGB: (188,130,74)
#BC824A contains mainly red and green colors. Web safe color of #BC824A is #CC9933 (or #C93).
#BC824A color RGB value is (188,130,74).
RGB: (188,130,74) (74%,51%,29%)
R 188 of 255 = 74%
G 130 of 255 = 51%
B 74 of 255 = 29%
R + G + B ~ 51%. #BC824A is middle color (not dark and not light).
R + G + B =
188 + 130 + 74 = 392 (100%)
R 188 of 392 ~ 47.96%
G 130 of 392 ~ 33.16%
B 74 of 392 ~ 18.88%
#BC824A color CMYK value is (0,31,61,26).
CMYK: (0,31,61,26) C0M31Y61K26 (0%,31%,61%,26%) (0.00/0.31/0.61/0.26)
BC | 82 | 4A | |
---|---|---|---|
RGB | 188 | 130 | 74 |
HSL | 29° | 45.97% | 51.37% |
HSB/HSV | 29° | 60.64% | 73.73% |
CMYK | 0.00% | 30.85% | 60.64% |
26.27% |
HEX | BC | 82 | 4A |
Decimal | 188 | 130 | 74 |
Binary | 10111100 | 10000010 | 1001010 |
Octal | 274 | 202 | 112 |
Examples of css and html codes for elements with #BC824A color. Also use rgb(188,130,74) instead hex code.
.myTextColor { color: #BC824A; }
<p style="color:#BC824A">This sample text font color is #BC824A.</p>
This text font color is #BC824A.
.myBgColor { background-color: #BC824A; }
<div style="background-color:#BC824A">Inner text</div>
This div background color is #BC824A.
.myBorderColor { border: 1px solid #BC824A; }
<div style="border:3px solid #BC824A">Div</div>
This div border color is #BC824A.
.myOpacity80 { color: #BC824A; opacity: 0.8; }
<p style="color:#BC824A;opacity:0.8;">80%</p>
Text with #BC824A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC824A;}
<p style="text-shadow: 3px 3px 1px #BC824A">Text here.</p>
This text has shadow with #BC824A color.
.textShadow {text-shadow: 3px 3px 1px #BC824A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC824A, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC824A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC824A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC824A, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC824A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC824A; -webkit-box-shadow: 1px 1px 3px 2px #BC824A; box-shadow: 1px 1px 3px 2px #BC824A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC824A; -webkit-box-shadow: 1px 1px 3px 2px #BC824A; box-shadow:1px 1px 3px 2px #BC824A;">
Div content here</div>
This text has color #BC824A on black background.
This text has color #BC824A on white background.
This text has black color on #BC824A background.
This text has white color on #BC824A background.