HEX: #BCC46B
RGB: (188,196,107)
#BCC46B contains mainly red and green colors. Web safe color of #BCC46B is #CCCC66 (or #CC6).
#BCC46B color RGB value is (188,196,107).
RGB: (188,196,107) (74%,77%,42%)
R 188 of 255 = 74%
G 196 of 255 = 77%
B 107 of 255 = 42%
R + G + B ~ 64%. #BCC46B is quite light color.
R + G + B =
188 + 196 + 107 = 491 (100%)
R 188 of 491 ~ 38.29%
G 196 of 491 ~ 39.92%
B 107 of 491 ~ 21.79%
#BCC46B color CMYK value is (4,0,45,23).
CMYK: (4,0,45,23) C4M0Y45K23 (4%,0%,45%,23%) (0.04/0.00/0.45/0.23)
BC | C4 | 6B | |
---|---|---|---|
RGB | 188 | 196 | 107 |
HSL | 65° | 43.00% | 59.41% |
HSB/HSV | 65° | 45.41% | 76.86% |
CMYK | 4.08% | 0.00% | 45.41% |
23.14% |
HEX | BC | C4 | 6B |
Decimal | 188 | 196 | 107 |
Binary | 10111100 | 11000100 | 1101011 |
Octal | 274 | 304 | 153 |
Examples of css and html codes for elements with #BCC46B color. Also use rgb(188,196,107) instead hex code.
.myTextColor { color: #BCC46B; }
<p style="color:#BCC46B">This sample text font color is #BCC46B.</p>
This text font color is #BCC46B.
.myBgColor { background-color: #BCC46B; }
<div style="background-color:#BCC46B">Inner text</div>
This div background color is #BCC46B.
.myBorderColor { border: 1px solid #BCC46B; }
<div style="border:3px solid #BCC46B">Div</div>
This div border color is #BCC46B.
.myOpacity80 { color: #BCC46B; opacity: 0.8; }
<p style="color:#BCC46B;opacity:0.8;">80%</p>
Text with #BCC46B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCC46B;}
<p style="text-shadow: 3px 3px 1px #BCC46B">Text here.</p>
This text has shadow with #BCC46B color.
.textShadow {text-shadow: 3px 3px 1px #BCC46B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCC46B, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCC46B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCC46B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCC46B, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCC46B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCC46B; -webkit-box-shadow: 1px 1px 3px 2px #BCC46B; box-shadow: 1px 1px 3px 2px #BCC46B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCC46B; -webkit-box-shadow: 1px 1px 3px 2px #BCC46B; box-shadow:1px 1px 3px 2px #BCC46B;">
Div content here</div>
This text has color #BCC46B on black background.
This text has color #BCC46B on white background.
This text has black color on #BCC46B background.
This text has white color on #BCC46B background.