HEX: #BCD16D
RGB: (188,209,109)
#BCD16D contains mainly red and green colors. Web safe color of #BCD16D is #CCCC66 (or #CC6).
#BCD16D color RGB value is (188,209,109).
RGB: (188,209,109) (74%,82%,43%)
R 188 of 255 = 74%
G 209 of 255 = 82%
B 109 of 255 = 43%
R + G + B ~ 66%. #BCD16D is quite light color.
R + G + B =
188 + 209 + 109 = 506 (100%)
R 188 of 506 ~ 37.15%
G 209 of 506 ~ 41.3%
B 109 of 506 ~ 21.54%
#BCD16D color CMYK value is (10,0,48,18).
CMYK: (10,0,48,18) C10M0Y48K18 (10%,0%,48%,18%) (0.10/0.00/0.48/0.18)
BC | D1 | 6D | |
---|---|---|---|
RGB | 188 | 209 | 109 |
HSL | 73° | 52.08% | 62.35% |
HSB/HSV | 73° | 47.85% | 81.96% |
CMYK | 10.05% | 0.00% | 47.85% |
18.04% |
HEX | BC | D1 | 6D |
Decimal | 188 | 209 | 109 |
Binary | 10111100 | 11010001 | 1101101 |
Octal | 274 | 321 | 155 |
Examples of css and html codes for elements with #BCD16D color. Also use rgb(188,209,109) instead hex code.
.myTextColor { color: #BCD16D; }
<p style="color:#BCD16D">This sample text font color is #BCD16D.</p>
This text font color is #BCD16D.
.myBgColor { background-color: #BCD16D; }
<div style="background-color:#BCD16D">Inner text</div>
This div background color is #BCD16D.
.myBorderColor { border: 1px solid #BCD16D; }
<div style="border:3px solid #BCD16D">Div</div>
This div border color is #BCD16D.
.myOpacity80 { color: #BCD16D; opacity: 0.8; }
<p style="color:#BCD16D;opacity:0.8;">80%</p>
Text with #BCD16D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCD16D;}
<p style="text-shadow: 3px 3px 1px #BCD16D">Text here.</p>
This text has shadow with #BCD16D color.
.textShadow {text-shadow: 3px 3px 1px #BCD16D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCD16D, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCD16D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCD16D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCD16D, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCD16D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCD16D; -webkit-box-shadow: 1px 1px 3px 2px #BCD16D; box-shadow: 1px 1px 3px 2px #BCD16D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCD16D; -webkit-box-shadow: 1px 1px 3px 2px #BCD16D; box-shadow:1px 1px 3px 2px #BCD16D;">
Div content here</div>
This text has color #BCD16D on black background.
This text has color #BCD16D on white background.
This text has black color on #BCD16D background.
This text has white color on #BCD16D background.