HEX: #BCE3AD
RGB: (188,227,173)
#BCE3AD contains red, green and blue colors in about the same proportion. Web safe color of #BCE3AD is #CCCC99 (or #CC9).
#BCE3AD color RGB value is (188,227,173).
RGB: (188,227,173) (74%,89%,68%)
R 188 of 255 = 74%
G 227 of 255 = 89%
B 173 of 255 = 68%
R + G + B ~ 77%. #BCE3AD is quite light color.
R + G + B =
188 + 227 + 173 = 588 (100%)
R 188 of 588 ~ 31.97%
G 227 of 588 ~ 38.61%
B 173 of 588 ~ 29.42%
#BCE3AD color CMYK value is (17,0,24,11).
CMYK: (17,0,24,11) C17M0Y24K11 (17%,0%,24%,11%) (0.17/0.00/0.24/0.11)
BC | E3 | AD | |
---|---|---|---|
RGB | 188 | 227 | 173 |
HSL | 103° | 49.09% | 78.43% |
HSB/HSV | 103° | 23.79% | 89.02% |
CMYK | 17.18% | 0.00% | 23.79% |
10.98% |
HEX | BC | E3 | AD |
Decimal | 188 | 227 | 173 |
Binary | 10111100 | 11100011 | 10101101 |
Octal | 274 | 343 | 255 |
Examples of css and html codes for elements with #BCE3AD color. Also use rgb(188,227,173) instead hex code.
.myTextColor { color: #BCE3AD; }
<p style="color:#BCE3AD">This sample text font color is #BCE3AD.</p>
This text font color is #BCE3AD.
.myBgColor { background-color: #BCE3AD; }
<div style="background-color:#BCE3AD">Inner text</div>
This div background color is #BCE3AD.
.myBorderColor { border: 1px solid #BCE3AD; }
<div style="border:3px solid #BCE3AD">Div</div>
This div border color is #BCE3AD.
.myOpacity80 { color: #BCE3AD; opacity: 0.8; }
<p style="color:#BCE3AD;opacity:0.8;">80%</p>
Text with #BCE3AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCE3AD;}
<p style="text-shadow: 3px 3px 1px #BCE3AD">Text here.</p>
This text has shadow with #BCE3AD color.
.textShadow {text-shadow: 3px 3px 1px #BCE3AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCE3AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCE3AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCE3AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCE3AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCE3AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCE3AD; -webkit-box-shadow: 1px 1px 3px 2px #BCE3AD; box-shadow: 1px 1px 3px 2px #BCE3AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCE3AD; -webkit-box-shadow: 1px 1px 3px 2px #BCE3AD; box-shadow:1px 1px 3px 2px #BCE3AD;">
Div content here</div>
This text has color #BCE3AD on black background.
This text has color #BCE3AD on white background.
This text has black color on #BCE3AD background.
This text has white color on #BCE3AD background.