HEX: #B2DFBE
RGB: (178,223,190)
#B2DFBE contains red, green and blue colors in about the same proportion. Web safe color of #B2DFBE is #99CCCC (or #9CC).
#B2DFBE color RGB value is (178,223,190).
RGB: (178,223,190) (70%,87%,75%)
R 178 of 255 = 70%
G 223 of 255 = 87%
B 190 of 255 = 75%
R + G + B ~ 77%. #B2DFBE is quite light color.
R + G + B =
178 + 223 + 190 = 591 (100%)
R 178 of 591 ~ 30.12%
G 223 of 591 ~ 37.73%
B 190 of 591 ~ 32.15%
#B2DFBE color CMYK value is (20,0,15,13).
CMYK: (20,0,15,13) C20M0Y15K13 (20%,0%,15%,13%) (0.20/0.00/0.15/0.13)
B2 | DF | BE | |
---|---|---|---|
RGB | 178 | 223 | 190 |
HSL | 136° | 41.28% | 78.63% |
HSB/HSV | 136° | 20.18% | 87.45% |
CMYK | 20.18% | 0.00% | 14.80% |
12.55% |
HEX | B2 | DF | BE |
Decimal | 178 | 223 | 190 |
Binary | 10110010 | 11011111 | 10111110 |
Octal | 262 | 337 | 276 |
Examples of css and html codes for elements with #B2DFBE color. Also use rgb(178,223,190) instead hex code.
.myTextColor { color: #B2DFBE; }
<p style="color:#B2DFBE">This sample text font color is #B2DFBE.</p>
This text font color is #B2DFBE.
.myBgColor { background-color: #B2DFBE; }
<div style="background-color:#B2DFBE">Inner text</div>
This div background color is #B2DFBE.
.myBorderColor { border: 1px solid #B2DFBE; }
<div style="border:3px solid #B2DFBE">Div</div>
This div border color is #B2DFBE.
.myOpacity80 { color: #B2DFBE; opacity: 0.8; }
<p style="color:#B2DFBE;opacity:0.8;">80%</p>
Text with #B2DFBE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B2DFBE;}
<p style="text-shadow: 3px 3px 1px #B2DFBE">Text here.</p>
This text has shadow with #B2DFBE color.
.textShadow {text-shadow: 3px 3px 1px #B2DFBE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B2DFBE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B2DFBE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B2DFBE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B2DFBE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B2DFBE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B2DFBE; -webkit-box-shadow: 1px 1px 3px 2px #B2DFBE; box-shadow: 1px 1px 3px 2px #B2DFBE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B2DFBE; -webkit-box-shadow: 1px 1px 3px 2px #B2DFBE; box-shadow:1px 1px 3px 2px #B2DFBE;">
Div content here</div>
This text has color #B2DFBE on black background.
This text has color #B2DFBE on white background.
This text has black color on #B2DFBE background.
This text has white color on #B2DFBE background.