HEX: #BCD499
RGB: (188,212,153)
#BCD499 contains red, green and blue colors in about the same proportion. Web safe color of #BCD499 is #CCCC99 (or #CC9).
#BCD499 color RGB value is (188,212,153).
RGB: (188,212,153) (74%,83%,60%)
R 188 of 255 = 74%
G 212 of 255 = 83%
B 153 of 255 = 60%
R + G + B ~ 72%. #BCD499 is quite light color.
R + G + B =
188 + 212 + 153 = 553 (100%)
R 188 of 553 ~ 34%
G 212 of 553 ~ 38.34%
B 153 of 553 ~ 27.67%
#BCD499 color CMYK value is (11,0,28,17).
CMYK: (11,0,28,17) C11M0Y28K17 (11%,0%,28%,17%) (0.11/0.00/0.28/0.17)
BC | D4 | 99 | |
---|---|---|---|
RGB | 188 | 212 | 153 |
HSL | 84° | 40.69% | 71.57% |
HSB/HSV | 84° | 27.83% | 83.14% |
CMYK | 11.32% | 0.00% | 27.83% |
16.86% |
HEX | BC | D4 | 99 |
Decimal | 188 | 212 | 153 |
Binary | 10111100 | 11010100 | 10011001 |
Octal | 274 | 324 | 231 |
Examples of css and html codes for elements with #BCD499 color. Also use rgb(188,212,153) instead hex code.
.myTextColor { color: #BCD499; }
<p style="color:#BCD499">This sample text font color is #BCD499.</p>
This text font color is #BCD499.
.myBgColor { background-color: #BCD499; }
<div style="background-color:#BCD499">Inner text</div>
This div background color is #BCD499.
.myBorderColor { border: 1px solid #BCD499; }
<div style="border:3px solid #BCD499">Div</div>
This div border color is #BCD499.
.myOpacity80 { color: #BCD499; opacity: 0.8; }
<p style="color:#BCD499;opacity:0.8;">80%</p>
Text with #BCD499 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCD499;}
<p style="text-shadow: 3px 3px 1px #BCD499">Text here.</p>
This text has shadow with #BCD499 color.
.textShadow {text-shadow: 3px 3px 1px #BCD499, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCD499, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCD499 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCD499, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCD499, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCD499 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCD499; -webkit-box-shadow: 1px 1px 3px 2px #BCD499; box-shadow: 1px 1px 3px 2px #BCD499; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCD499; -webkit-box-shadow: 1px 1px 3px 2px #BCD499; box-shadow:1px 1px 3px 2px #BCD499;">
Div content here</div>
This text has color #BCD499 on black background.
This text has color #BCD499 on white background.
This text has black color on #BCD499 background.
This text has white color on #BCD499 background.