HEX: #BCF2AB
RGB: (188,242,171)
#BCF2AB contains mainly red and green colors. Web safe color of #BCF2AB is #CCFF99 (or #CF9).
#BCF2AB color RGB value is (188,242,171).
RGB: (188,242,171) (74%,95%,67%)
R 188 of 255 = 74%
G 242 of 255 = 95%
B 171 of 255 = 67%
R + G + B ~ 79%. #BCF2AB is quite light color.
R + G + B =
188 + 242 + 171 = 601 (100%)
R 188 of 601 ~ 31.28%
G 242 of 601 ~ 40.27%
B 171 of 601 ~ 28.45%
#BCF2AB color CMYK value is (22,0,29,5).
CMYK: (22,0,29,5) C22M0Y29K5 (22%,0%,29%,5%) (0.22/0.00/0.29/0.05)
BC | F2 | AB | |
---|---|---|---|
RGB | 188 | 242 | 171 |
HSL | 106° | 73.20% | 80.98% |
HSB/HSV | 106° | 29.34% | 94.90% |
CMYK | 22.31% | 0.00% | 29.34% |
5.10% |
HEX | BC | F2 | AB |
Decimal | 188 | 242 | 171 |
Binary | 10111100 | 11110010 | 10101011 |
Octal | 274 | 362 | 253 |
Examples of css and html codes for elements with #BCF2AB color. Also use rgb(188,242,171) instead hex code.
.myTextColor { color: #BCF2AB; }
<p style="color:#BCF2AB">This sample text font color is #BCF2AB.</p>
This text font color is #BCF2AB.
.myBgColor { background-color: #BCF2AB; }
<div style="background-color:#BCF2AB">Inner text</div>
This div background color is #BCF2AB.
.myBorderColor { border: 1px solid #BCF2AB; }
<div style="border:3px solid #BCF2AB">Div</div>
This div border color is #BCF2AB.
.myOpacity80 { color: #BCF2AB; opacity: 0.8; }
<p style="color:#BCF2AB;opacity:0.8;">80%</p>
Text with #BCF2AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCF2AB;}
<p style="text-shadow: 3px 3px 1px #BCF2AB">Text here.</p>
This text has shadow with #BCF2AB color.
.textShadow {text-shadow: 3px 3px 1px #BCF2AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCF2AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCF2AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCF2AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCF2AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCF2AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCF2AB; -webkit-box-shadow: 1px 1px 3px 2px #BCF2AB; box-shadow: 1px 1px 3px 2px #BCF2AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCF2AB; -webkit-box-shadow: 1px 1px 3px 2px #BCF2AB; box-shadow:1px 1px 3px 2px #BCF2AB;">
Div content here</div>
This text has color #BCF2AB on black background.
This text has color #BCF2AB on white background.
This text has black color on #BCF2AB background.
This text has white color on #BCF2AB background.