HEX: #B4EABE
RGB: (180,234,190)
#B4EABE contains red, green and blue colors in about the same proportion. Web safe color of #B4EABE is #CCFFCC (or #CFC).
#B4EABE color RGB value is (180,234,190).
RGB: (180,234,190) (71%,92%,75%)
R 180 of 255 = 71%
G 234 of 255 = 92%
B 190 of 255 = 75%
R + G + B ~ 79%. #B4EABE is quite light color.
R + G + B =
180 + 234 + 190 = 604 (100%)
R 180 of 604 ~ 29.8%
G 234 of 604 ~ 38.74%
B 190 of 604 ~ 31.46%
#B4EABE color CMYK value is (23,0,19,8).
CMYK: (23,0,19,8) C23M0Y19K8 (23%,0%,19%,8%) (0.23/0.00/0.19/0.08)
B4 | EA | BE | |
---|---|---|---|
RGB | 180 | 234 | 190 |
HSL | 131° | 56.25% | 81.18% |
HSB/HSV | 131° | 23.08% | 91.76% |
CMYK | 23.08% | 0.00% | 18.80% |
8.24% |
HEX | B4 | EA | BE |
Decimal | 180 | 234 | 190 |
Binary | 10110100 | 11101010 | 10111110 |
Octal | 264 | 352 | 276 |
Examples of css and html codes for elements with #B4EABE color. Also use rgb(180,234,190) instead hex code.
.myTextColor { color: #B4EABE; }
<p style="color:#B4EABE">This sample text font color is #B4EABE.</p>
This text font color is #B4EABE.
.myBgColor { background-color: #B4EABE; }
<div style="background-color:#B4EABE">Inner text</div>
This div background color is #B4EABE.
.myBorderColor { border: 1px solid #B4EABE; }
<div style="border:3px solid #B4EABE">Div</div>
This div border color is #B4EABE.
.myOpacity80 { color: #B4EABE; opacity: 0.8; }
<p style="color:#B4EABE;opacity:0.8;">80%</p>
Text with #B4EABE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4EABE;}
<p style="text-shadow: 3px 3px 1px #B4EABE">Text here.</p>
This text has shadow with #B4EABE color.
.textShadow {text-shadow: 3px 3px 1px #B4EABE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4EABE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4EABE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4EABE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4EABE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4EABE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4EABE; -webkit-box-shadow: 1px 1px 3px 2px #B4EABE; box-shadow: 1px 1px 3px 2px #B4EABE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4EABE; -webkit-box-shadow: 1px 1px 3px 2px #B4EABE; box-shadow:1px 1px 3px 2px #B4EABE;">
Div content here</div>
This text has color #B4EABE on black background.
This text has color #B4EABE on white background.
This text has black color on #B4EABE background.
This text has white color on #B4EABE background.