HEX: #B4EE95
RGB: (180,238,149)
#B4EE95 contains mainly red and green colors. Web safe color of #B4EE95 is #CCFF99 (or #CF9).
#B4EE95 color RGB value is (180,238,149).
RGB: (180,238,149) (71%,93%,58%)
R 180 of 255 = 71%
G 238 of 255 = 93%
B 149 of 255 = 58%
R + G + B ~ 74%. #B4EE95 is quite light color.
R + G + B =
180 + 238 + 149 = 567 (100%)
R 180 of 567 ~ 31.75%
G 238 of 567 ~ 41.98%
B 149 of 567 ~ 26.28%
#B4EE95 color CMYK value is (24,0,37,7).
CMYK: (24,0,37,7) C24M0Y37K7 (24%,0%,37%,7%) (0.24/0.00/0.37/0.07)
B4 | EE | 95 | |
---|---|---|---|
RGB | 180 | 238 | 149 |
HSL | 99° | 72.36% | 75.88% |
HSB/HSV | 99° | 37.39% | 93.33% |
CMYK | 24.37% | 0.00% | 37.39% |
6.67% |
HEX | B4 | EE | 95 |
Decimal | 180 | 238 | 149 |
Binary | 10110100 | 11101110 | 10010101 |
Octal | 264 | 356 | 225 |
Examples of css and html codes for elements with #B4EE95 color. Also use rgb(180,238,149) instead hex code.
.myTextColor { color: #B4EE95; }
<p style="color:#B4EE95">This sample text font color is #B4EE95.</p>
This text font color is #B4EE95.
.myBgColor { background-color: #B4EE95; }
<div style="background-color:#B4EE95">Inner text</div>
This div background color is #B4EE95.
.myBorderColor { border: 1px solid #B4EE95; }
<div style="border:3px solid #B4EE95">Div</div>
This div border color is #B4EE95.
.myOpacity80 { color: #B4EE95; opacity: 0.8; }
<p style="color:#B4EE95;opacity:0.8;">80%</p>
Text with #B4EE95 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4EE95;}
<p style="text-shadow: 3px 3px 1px #B4EE95">Text here.</p>
This text has shadow with #B4EE95 color.
.textShadow {text-shadow: 3px 3px 1px #B4EE95, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4EE95, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4EE95 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4EE95, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4EE95, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4EE95 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4EE95; -webkit-box-shadow: 1px 1px 3px 2px #B4EE95; box-shadow: 1px 1px 3px 2px #B4EE95; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4EE95; -webkit-box-shadow: 1px 1px 3px 2px #B4EE95; box-shadow:1px 1px 3px 2px #B4EE95;">
Div content here</div>
This text has color #B4EE95 on black background.
This text has color #B4EE95 on white background.
This text has black color on #B4EE95 background.
This text has white color on #B4EE95 background.