HEX: #BBE5CA
RGB: (187,229,202)
#BBE5CA contains red, green and blue colors in about the same proportion. Web safe color of #BBE5CA is #CCCCCC (or #CCC).
#BBE5CA color RGB value is (187,229,202).
RGB: (187,229,202) (73%,90%,79%)
R 187 of 255 = 73%
G 229 of 255 = 90%
B 202 of 255 = 79%
R + G + B ~ 81%. #BBE5CA is quite light color.
R + G + B =
187 + 229 + 202 = 618 (100%)
R 187 of 618 ~ 30.26%
G 229 of 618 ~ 37.06%
B 202 of 618 ~ 32.69%
#BBE5CA color CMYK value is (18,0,12,10).
CMYK: (18,0,12,10) C18M0Y12K10 (18%,0%,12%,10%) (0.18/0.00/0.12/0.10)
BB | E5 | CA | |
---|---|---|---|
RGB | 187 | 229 | 202 |
HSL | 141° | 44.68% | 81.57% |
HSB/HSV | 141° | 18.34% | 89.80% |
CMYK | 18.34% | 0.00% | 11.79% |
10.20% |
HEX | BB | E5 | CA |
Decimal | 187 | 229 | 202 |
Binary | 10111011 | 11100101 | 11001010 |
Octal | 273 | 345 | 312 |
Examples of css and html codes for elements with #BBE5CA color. Also use rgb(187,229,202) instead hex code.
.myTextColor { color: #BBE5CA; }
<p style="color:#BBE5CA">This sample text font color is #BBE5CA.</p>
This text font color is #BBE5CA.
.myBgColor { background-color: #BBE5CA; }
<div style="background-color:#BBE5CA">Inner text</div>
This div background color is #BBE5CA.
.myBorderColor { border: 1px solid #BBE5CA; }
<div style="border:3px solid #BBE5CA">Div</div>
This div border color is #BBE5CA.
.myOpacity80 { color: #BBE5CA; opacity: 0.8; }
<p style="color:#BBE5CA;opacity:0.8;">80%</p>
Text with #BBE5CA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBE5CA;}
<p style="text-shadow: 3px 3px 1px #BBE5CA">Text here.</p>
This text has shadow with #BBE5CA color.
.textShadow {text-shadow: 3px 3px 1px #BBE5CA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBE5CA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBE5CA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBE5CA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBE5CA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBE5CA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBE5CA; -webkit-box-shadow: 1px 1px 3px 2px #BBE5CA; box-shadow: 1px 1px 3px 2px #BBE5CA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBE5CA; -webkit-box-shadow: 1px 1px 3px 2px #BBE5CA; box-shadow:1px 1px 3px 2px #BBE5CA;">
Div content here</div>
This text has color #BBE5CA on black background.
This text has color #BBE5CA on white background.
This text has black color on #BBE5CA background.
This text has white color on #BBE5CA background.