HEX: #B2DBBB
RGB: (178,219,187)
#B2DBBB contains red, green and blue colors in about the same proportion. Web safe color of #B2DBBB is #99CCCC (or #9CC).
#B2DBBB color RGB value is (178,219,187).
RGB: (178,219,187) (70%,86%,73%)
R 178 of 255 = 70%
G 219 of 255 = 86%
B 187 of 255 = 73%
R + G + B ~ 76%. #B2DBBB is quite light color.
R + G + B =
178 + 219 + 187 = 584 (100%)
R 178 of 584 ~ 30.48%
G 219 of 584 ~ 37.5%
B 187 of 584 ~ 32.02%
#B2DBBB color CMYK value is (19,0,15,14).
CMYK: (19,0,15,14) C19M0Y15K14 (19%,0%,15%,14%) (0.19/0.00/0.15/0.14)
B2 | DB | BB | |
---|---|---|---|
RGB | 178 | 219 | 187 |
HSL | 133° | 36.28% | 77.84% |
HSB/HSV | 133° | 18.72% | 85.88% |
CMYK | 18.72% | 0.00% | 14.61% |
14.12% |
HEX | B2 | DB | BB |
Decimal | 178 | 219 | 187 |
Binary | 10110010 | 11011011 | 10111011 |
Octal | 262 | 333 | 273 |
Examples of css and html codes for elements with #B2DBBB color. Also use rgb(178,219,187) instead hex code.
.myTextColor { color: #B2DBBB; }
<p style="color:#B2DBBB">This sample text font color is #B2DBBB.</p>
This text font color is #B2DBBB.
.myBgColor { background-color: #B2DBBB; }
<div style="background-color:#B2DBBB">Inner text</div>
This div background color is #B2DBBB.
.myBorderColor { border: 1px solid #B2DBBB; }
<div style="border:3px solid #B2DBBB">Div</div>
This div border color is #B2DBBB.
.myOpacity80 { color: #B2DBBB; opacity: 0.8; }
<p style="color:#B2DBBB;opacity:0.8;">80%</p>
Text with #B2DBBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B2DBBB;}
<p style="text-shadow: 3px 3px 1px #B2DBBB">Text here.</p>
This text has shadow with #B2DBBB color.
.textShadow {text-shadow: 3px 3px 1px #B2DBBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B2DBBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B2DBBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B2DBBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B2DBBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B2DBBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B2DBBB; -webkit-box-shadow: 1px 1px 3px 2px #B2DBBB; box-shadow: 1px 1px 3px 2px #B2DBBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B2DBBB; -webkit-box-shadow: 1px 1px 3px 2px #B2DBBB; box-shadow:1px 1px 3px 2px #B2DBBB;">
Div content here</div>
This text has color #B2DBBB on black background.
This text has color #B2DBBB on white background.
This text has black color on #B2DBBB background.
This text has white color on #B2DBBB background.