HEX: #BCE49D
RGB: (188,228,157)
#BCE49D contains mainly red and green colors. Web safe color of #BCE49D is #CCCC99 (or #CC9).
#BCE49D color RGB value is (188,228,157).
RGB: (188,228,157) (74%,89%,62%)
R 188 of 255 = 74%
G 228 of 255 = 89%
B 157 of 255 = 62%
R + G + B ~ 75%. #BCE49D is quite light color.
R + G + B =
188 + 228 + 157 = 573 (100%)
R 188 of 573 ~ 32.81%
G 228 of 573 ~ 39.79%
B 157 of 573 ~ 27.4%
#BCE49D color CMYK value is (18,0,31,11).
CMYK: (18,0,31,11) C18M0Y31K11 (18%,0%,31%,11%) (0.18/0.00/0.31/0.11)
BC | E4 | 9D | |
---|---|---|---|
RGB | 188 | 228 | 157 |
HSL | 94° | 56.80% | 75.49% |
HSB/HSV | 94° | 31.14% | 89.41% |
CMYK | 17.54% | 0.00% | 31.14% |
10.59% |
HEX | BC | E4 | 9D |
Decimal | 188 | 228 | 157 |
Binary | 10111100 | 11100100 | 10011101 |
Octal | 274 | 344 | 235 |
Examples of css and html codes for elements with #BCE49D color. Also use rgb(188,228,157) instead hex code.
.myTextColor { color: #BCE49D; }
<p style="color:#BCE49D">This sample text font color is #BCE49D.</p>
This text font color is #BCE49D.
.myBgColor { background-color: #BCE49D; }
<div style="background-color:#BCE49D">Inner text</div>
This div background color is #BCE49D.
.myBorderColor { border: 1px solid #BCE49D; }
<div style="border:3px solid #BCE49D">Div</div>
This div border color is #BCE49D.
.myOpacity80 { color: #BCE49D; opacity: 0.8; }
<p style="color:#BCE49D;opacity:0.8;">80%</p>
Text with #BCE49D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCE49D;}
<p style="text-shadow: 3px 3px 1px #BCE49D">Text here.</p>
This text has shadow with #BCE49D color.
.textShadow {text-shadow: 3px 3px 1px #BCE49D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCE49D, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCE49D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCE49D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCE49D, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCE49D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCE49D; -webkit-box-shadow: 1px 1px 3px 2px #BCE49D; box-shadow: 1px 1px 3px 2px #BCE49D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCE49D; -webkit-box-shadow: 1px 1px 3px 2px #BCE49D; box-shadow:1px 1px 3px 2px #BCE49D;">
Div content here</div>
This text has color #BCE49D on black background.
This text has color #BCE49D on white background.
This text has black color on #BCE49D background.
This text has white color on #BCE49D background.