HEX: #B4EA7D
RGB: (180,234,125)
#B4EA7D contains mainly red and green colors. Web safe color of #B4EA7D is #CCFF66 (or #CF6).
#B4EA7D color RGB value is (180,234,125).
RGB: (180,234,125) (71%,92%,49%)
R 180 of 255 = 71%
G 234 of 255 = 92%
B 125 of 255 = 49%
R + G + B ~ 71%. #B4EA7D is quite light color.
R + G + B =
180 + 234 + 125 = 539 (100%)
R 180 of 539 ~ 33.4%
G 234 of 539 ~ 43.41%
B 125 of 539 ~ 23.19%
#B4EA7D color CMYK value is (23,0,47,8).
CMYK: (23,0,47,8) C23M0Y47K8 (23%,0%,47%,8%) (0.23/0.00/0.47/0.08)
B4 | EA | 7D | |
---|---|---|---|
RGB | 180 | 234 | 125 |
HSL | 90° | 72.19% | 70.39% |
HSB/HSV | 90° | 46.58% | 91.76% |
CMYK | 23.08% | 0.00% | 46.58% |
8.24% |
HEX | B4 | EA | 7D |
Decimal | 180 | 234 | 125 |
Binary | 10110100 | 11101010 | 1111101 |
Octal | 264 | 352 | 175 |
Examples of css and html codes for elements with #B4EA7D color. Also use rgb(180,234,125) instead hex code.
.myTextColor { color: #B4EA7D; }
<p style="color:#B4EA7D">This sample text font color is #B4EA7D.</p>
This text font color is #B4EA7D.
.myBgColor { background-color: #B4EA7D; }
<div style="background-color:#B4EA7D">Inner text</div>
This div background color is #B4EA7D.
.myBorderColor { border: 1px solid #B4EA7D; }
<div style="border:3px solid #B4EA7D">Div</div>
This div border color is #B4EA7D.
.myOpacity80 { color: #B4EA7D; opacity: 0.8; }
<p style="color:#B4EA7D;opacity:0.8;">80%</p>
Text with #B4EA7D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4EA7D;}
<p style="text-shadow: 3px 3px 1px #B4EA7D">Text here.</p>
This text has shadow with #B4EA7D color.
.textShadow {text-shadow: 3px 3px 1px #B4EA7D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4EA7D, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4EA7D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4EA7D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4EA7D, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4EA7D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4EA7D; -webkit-box-shadow: 1px 1px 3px 2px #B4EA7D; box-shadow: 1px 1px 3px 2px #B4EA7D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4EA7D; -webkit-box-shadow: 1px 1px 3px 2px #B4EA7D; box-shadow:1px 1px 3px 2px #B4EA7D;">
Div content here</div>
This text has color #B4EA7D on black background.
This text has color #B4EA7D on white background.
This text has black color on #B4EA7D background.
This text has white color on #B4EA7D background.