HEX: #BCE073
RGB: (188,224,115)
#BCE073 contains mainly red and green colors. Web safe color of #BCE073 is #CCCC66 (or #CC6).
#BCE073 color RGB value is (188,224,115).
RGB: (188,224,115) (74%,88%,45%)
R 188 of 255 = 74%
G 224 of 255 = 88%
B 115 of 255 = 45%
R + G + B ~ 69%. #BCE073 is quite light color.
R + G + B =
188 + 224 + 115 = 527 (100%)
R 188 of 527 ~ 35.67%
G 224 of 527 ~ 42.5%
B 115 of 527 ~ 21.82%
#BCE073 color CMYK value is (16,0,49,12).
CMYK: (16,0,49,12) C16M0Y49K12 (16%,0%,49%,12%) (0.16/0.00/0.49/0.12)
BC | E0 | 73 | |
---|---|---|---|
RGB | 188 | 224 | 115 |
HSL | 80° | 63.74% | 66.47% |
HSB/HSV | 80° | 48.66% | 87.84% |
CMYK | 16.07% | 0.00% | 48.66% |
12.16% |
HEX | BC | E0 | 73 |
Decimal | 188 | 224 | 115 |
Binary | 10111100 | 11100000 | 1110011 |
Octal | 274 | 340 | 163 |
Examples of css and html codes for elements with #BCE073 color. Also use rgb(188,224,115) instead hex code.
.myTextColor { color: #BCE073; }
<p style="color:#BCE073">This sample text font color is #BCE073.</p>
This text font color is #BCE073.
.myBgColor { background-color: #BCE073; }
<div style="background-color:#BCE073">Inner text</div>
This div background color is #BCE073.
.myBorderColor { border: 1px solid #BCE073; }
<div style="border:3px solid #BCE073">Div</div>
This div border color is #BCE073.
.myOpacity80 { color: #BCE073; opacity: 0.8; }
<p style="color:#BCE073;opacity:0.8;">80%</p>
Text with #BCE073 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCE073;}
<p style="text-shadow: 3px 3px 1px #BCE073">Text here.</p>
This text has shadow with #BCE073 color.
.textShadow {text-shadow: 3px 3px 1px #BCE073, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCE073, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCE073 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCE073, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCE073, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCE073 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCE073; -webkit-box-shadow: 1px 1px 3px 2px #BCE073; box-shadow: 1px 1px 3px 2px #BCE073; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCE073; -webkit-box-shadow: 1px 1px 3px 2px #BCE073; box-shadow:1px 1px 3px 2px #BCE073;">
Div content here</div>
This text has color #BCE073 on black background.
This text has color #BCE073 on white background.
This text has black color on #BCE073 background.
This text has white color on #BCE073 background.