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