HEX: #BBEEBA
RGB: (187,238,186)
#BBEEBA contains red, green and blue colors in about the same proportion. Web safe color of #BBEEBA is #CCFFCC (or #CFC).
#BBEEBA color RGB value is (187,238,186).
RGB: (187,238,186) (73%,93%,73%)
R 187 of 255 = 73%
G 238 of 255 = 93%
B 186 of 255 = 73%
R + G + B ~ 80%. #BBEEBA is quite light color.
R + G + B =
187 + 238 + 186 = 611 (100%)
R 187 of 611 ~ 30.61%
G 238 of 611 ~ 38.95%
B 186 of 611 ~ 30.44%
#BBEEBA color CMYK value is (21,0,22,7).
CMYK: (21,0,22,7) C21M0Y22K7 (21%,0%,22%,7%) (0.21/0.00/0.22/0.07)
BB | EE | BA | |
---|---|---|---|
RGB | 187 | 238 | 186 |
HSL | 119° | 60.47% | 83.14% |
HSB/HSV | 119° | 21.85% | 93.33% |
CMYK | 21.43% | 0.00% | 21.85% |
6.67% |
HEX | BB | EE | BA |
Decimal | 187 | 238 | 186 |
Binary | 10111011 | 11101110 | 10111010 |
Octal | 273 | 356 | 272 |
Examples of css and html codes for elements with #BBEEBA color. Also use rgb(187,238,186) instead hex code.
.myTextColor { color: #BBEEBA; }
<p style="color:#BBEEBA">This sample text font color is #BBEEBA.</p>
This text font color is #BBEEBA.
.myBgColor { background-color: #BBEEBA; }
<div style="background-color:#BBEEBA">Inner text</div>
This div background color is #BBEEBA.
.myBorderColor { border: 1px solid #BBEEBA; }
<div style="border:3px solid #BBEEBA">Div</div>
This div border color is #BBEEBA.
.myOpacity80 { color: #BBEEBA; opacity: 0.8; }
<p style="color:#BBEEBA;opacity:0.8;">80%</p>
Text with #BBEEBA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBEEBA;}
<p style="text-shadow: 3px 3px 1px #BBEEBA">Text here.</p>
This text has shadow with #BBEEBA color.
.textShadow {text-shadow: 3px 3px 1px #BBEEBA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBEEBA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBEEBA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBEEBA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBEEBA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBEEBA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBEEBA; -webkit-box-shadow: 1px 1px 3px 2px #BBEEBA; box-shadow: 1px 1px 3px 2px #BBEEBA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBEEBA; -webkit-box-shadow: 1px 1px 3px 2px #BBEEBA; box-shadow:1px 1px 3px 2px #BBEEBA;">
Div content here</div>
This text has color #BBEEBA on black background.
This text has color #BBEEBA on white background.
This text has black color on #BBEEBA background.
This text has white color on #BBEEBA background.