HEX: #BCEE7F
RGB: (188,238,127)
#BCEE7F contains mainly red and green colors. Web safe color of #BCEE7F is #CCFF66 (or #CF6).
#BCEE7F color RGB value is (188,238,127).
RGB: (188,238,127) (74%,93%,50%)
R 188 of 255 = 74%
G 238 of 255 = 93%
B 127 of 255 = 50%
R + G + B ~ 72%. #BCEE7F is quite light color.
R + G + B =
188 + 238 + 127 = 553 (100%)
R 188 of 553 ~ 34%
G 238 of 553 ~ 43.04%
B 127 of 553 ~ 22.97%
#BCEE7F color CMYK value is (21,0,47,7).
CMYK: (21,0,47,7) C21M0Y47K7 (21%,0%,47%,7%) (0.21/0.00/0.47/0.07)
BC | EE | 7F | |
---|---|---|---|
RGB | 188 | 238 | 127 |
HSL | 87° | 76.55% | 71.57% |
HSB/HSV | 87° | 46.64% | 93.33% |
CMYK | 21.01% | 0.00% | 46.64% |
6.67% |
HEX | BC | EE | 7F |
Decimal | 188 | 238 | 127 |
Binary | 10111100 | 11101110 | 1111111 |
Octal | 274 | 356 | 177 |
Examples of css and html codes for elements with #BCEE7F color. Also use rgb(188,238,127) instead hex code.
.myTextColor { color: #BCEE7F; }
<p style="color:#BCEE7F">This sample text font color is #BCEE7F.</p>
This text font color is #BCEE7F.
.myBgColor { background-color: #BCEE7F; }
<div style="background-color:#BCEE7F">Inner text</div>
This div background color is #BCEE7F.
.myBorderColor { border: 1px solid #BCEE7F; }
<div style="border:3px solid #BCEE7F">Div</div>
This div border color is #BCEE7F.
.myOpacity80 { color: #BCEE7F; opacity: 0.8; }
<p style="color:#BCEE7F;opacity:0.8;">80%</p>
Text with #BCEE7F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCEE7F;}
<p style="text-shadow: 3px 3px 1px #BCEE7F">Text here.</p>
This text has shadow with #BCEE7F color.
.textShadow {text-shadow: 3px 3px 1px #BCEE7F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCEE7F, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCEE7F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCEE7F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCEE7F, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCEE7F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCEE7F; -webkit-box-shadow: 1px 1px 3px 2px #BCEE7F; box-shadow: 1px 1px 3px 2px #BCEE7F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCEE7F; -webkit-box-shadow: 1px 1px 3px 2px #BCEE7F; box-shadow:1px 1px 3px 2px #BCEE7F;">
Div content here</div>
This text has color #BCEE7F on black background.
This text has color #BCEE7F on white background.
This text has black color on #BCEE7F background.
This text has white color on #BCEE7F background.